📄 app_cfg.h
字号:
/*
*********************************************************************************************************
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -