app_cfg.h
来自「stm32 ucos 精简移殖版本 不需作任何修改直接便可运行。包含串口 定时器」· C头文件 代码 · 共 83 行
H
83 行
/*
*********************************************************************************************************
* EXAMPLE CODE
*
* (c) Copyright 2003-2006; Micrium, Inc.; Weston, FL
*
* All rights reserved. Protected by international copyright laws.
* Knowledge of the source code may NOT be used to develop a similar product.
* Please help us continue to provide the Embedded community with the finest
* software available. Your honesty is greatly appreciated.
*********************************************************************************************************
*/
/*
*********************************************************************************************************
*
* APPLICATION CONFIGURATION
*
* ST Microelectronics STM32
* with the
* STM3210B-LK1 Evaluation Board
*
* Filename : app_cfg.h
* Version : V1.10
* Programmer(s) : BH3NVN
*********************************************************************************************************
*/
#ifndef __APP_CFG_H__
#define __APP_CFG_H__
/*
*********************************************************************************************************
* MODULE ENABLE / DISABLE
*********************************************************************************************************
*/
/*
*********************************************************************************************************
* TASKS NAMES
*********************************************************************************************************
*/
/*
*********************************************************************************************************
* TASK PRIORITIES
*********************************************************************************************************
*/
#define APP_TASK_START_PRIO 2
#define APP_TASK_UART_PRIO 7
#define APP_TASK_KBD_PRIO 4
#define APP_TASK_KEY_PRIO 5
#define APP_TASK_LED_PRIO 6
/*
*********************************************************************************************************
* TASK STACK SIZES
* Size of the task stacks (# of OS_STK entries)
*********************************************************************************************************
*/
#define APP_TASK_START_STK_SIZE 128
#define APP_TASK_KBD_STK_SIZE 128
#define APP_TASK_KEY_STK_SIZE 128
#define APP_TASK_LED_STK_SIZE 128
#define APP_TASK_UART_STK_SIZE 128
/*
*********************************************************************************************************
* LIB
*********************************************************************************************************
*/
#define uC_CFG_OPTIMIZE_ASM_EN DEF_ENABLED
#define LIB_STR_CFG_FP_EN DEF_DISABLED
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?