os_cfg._h
来自「ucos-ii-at90S-icc-avr」· _H 代码 · 共 44 行
_H
44 行
/*
********************************************************************************
* uC/OS-II
* The Real-Time Kernel
*
* Configuration for AT90
*
* File: OS_CFG.H
* By:
* Modified by:
* Revision: 0
*
********************************************************************************
*/
/*
********************************************************************************
* uC/OS-II CONFIGURATION
********************************************************************************
*/
/* Set the number of ticks in one second*/
#define OS_TICKS_PER_SEC 50
/* Defines the lowest priority that can be assigned MUST NEVER be higher than 63*/
#define OS_LOWEST_PRIO 2
#define OS_HARDWARE_STACK_SIZE 64
#define OS_TASK_STACK_SIZE (OS_HARDWARE_STACK_SIZE+64)
#define OS_STRICT 1
#define OS_EVENT_EN 1
#define OS_SEM_EN 1
#define DEBUG_IN_AVR_STUDIO 0
#if DEBUG_IN_AVR_STUDIO==1
#define PROGRAM_START_FLASH_EN 0
#else
#define PROGRAM_START_FLASH_EN 1
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?