39 lines
1.5 KiB
C
39 lines
1.5 KiB
C
/**
|
||
* @file main_common.c
|
||
* @author Alvin Young (impressionyang@outlook.com)
|
||
* @brief
|
||
* @version 0.1
|
||
* @date 2024-12-04
|
||
*
|
||
* _ _
|
||
* (_)_ _ ___ _______ ___ ___ (_)__ ___ __ _____ ____ ___ _
|
||
* / / ' \/ _ \/ __/ -_|_-<(_-</ / _ \/ _ \/ // / _ `/ _ \/ _ `/
|
||
* /_/_/_/_/ .__/_/ \__/___/___/_/\___/_//_/\_, /\_,_/_//_/\_, /
|
||
* /_/ /___/ /___/
|
||
* @copyright Copyright (c) 2024 impressionyang
|
||
*
|
||
* @par 修改日志:
|
||
* <table>
|
||
* <tr><th>Date <th>Version <th>Author <th>Description
|
||
* <tr><td>2024-12-04 <td>v1.0 <td>Alvin Young <td>首次创建
|
||
* </table>
|
||
*
|
||
*/
|
||
/* Define to prevent recursive inclusion -------------------------------------*/
|
||
/* Includes ------------------------------------------------------------------*/
|
||
#include "main_common.h"
|
||
/* define --------------------------------------------------------------------*/
|
||
/* typedef -------------------------------------------------------------------*/
|
||
/* variables -----------------------------------------------------------------*/
|
||
|
||
/// @brief 所有Task的命名集合,名字长度不能超过configMAX_TASK_NAME_LEN = 16
|
||
char* imp_main_task_table[] = {
|
||
"idle",
|
||
"main_task",
|
||
"ext_trans_task",
|
||
};
|
||
/* Private function(only *.c) -----------------------------------------------*/
|
||
/* Exported functions --------------------------------------------------------*/
|
||
/*
|
||
* EOF
|
||
*/ |