?? os_cfg._h
字號:
/*
********************************************************************************
* 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -