📄 os_cfg.h
字号:
/*
*********************************************************************************************************
* Kinix Kernel
* A Teaching-Oriented Kernel
*
* (c) Copyright 2006, Kasicass, School of Software Engineering, CQU
* All Rights Reserved
*
* Many codes & ideas come from uC/OS-II, for deeper study, referring to
* read its codes.
*
* File : os_cfg.h (configure file)
* By : Kasicass
* Version : V1.00
*********************************************************************************************************
*/
/* 下面的值会影响编译出来的程序的大小 */
#define OS_MAX_TASKS 32 /* Max. number of tasks in your application ... */
/* ... MUST be >= 2 */
#define OS_LOWEST_PRIO 63 /* Defines the lowest priority that can be assigned ... */
/* ... MUST NEVER be higher than 63! */
#define OS_TASK_IDLE_STK_SIZE 512 /* Idle task stack size (# of OS_STK wide entries) */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -