?? os_config.c
字號:
/*********************************************************************************************************
** Mini OS
** The Real-Time Kernel For Avr Atmega8/16 CPU
**
** (c) Copyright 2004-2004, wanghong
** All Rights Reserved
**
** V1.20
**
**
** Filename: os_config.c
** Created by: wanghong
** Date: 2004.09.05
** Description: configuration file of Mini OS for Avr Atmega8/16 CPU
**
**------------------------------------------------------------------------------------------------------
** Modified by:
** Date:
** Description:
**
**------------------------------------------------------------------------------------------------------
********************************************************************************************************/
#include "os_config.h"
const unsigned char os_max_task_n=OS_MAX_TASK_N; // max task number
const unsigned char os_max_msg_n=OS_MAX_MSG_N; // max message number
const unsigned char os_priority_en=OS_PRIORITY_EN; // task priority enable switch(task0: highest)
const unsigned int os_stack_bottom=OS_STACK_BOTTOM; // bottom of stack area
const unsigned int os_stack_top=OS_STACK_TOP; // top of the stack, stack growth down
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -