⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 os_config.c

📁 MINI-os code,you can download !
💻 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 + -