mirror of
https://gitee.com/cosyos/cosyos.git
synced 2026-02-06 03:41:41 +08:00
28 lines
541 B
C
28 lines
541 B
C
/**************************************************************************//**
|
|
* @item CosyOS-II Kernel
|
|
* @file os_task.h
|
|
* @brief 系统任务声明
|
|
* @author 迟凯峰
|
|
* @version V1.2.0
|
|
* @date 2023.11.25
|
|
******************************************************************************/
|
|
|
|
#ifndef __OS_TASK_H
|
|
#define __OS_TASK_H
|
|
|
|
/* 任务管理器 */
|
|
uExternTask(Taskmgr);
|
|
|
|
/* 调试任务 */
|
|
uExternTask(Debugger);
|
|
|
|
/* 启动任务 */
|
|
uExternTask(Starter);
|
|
|
|
/* 系统空闲任务 */
|
|
uExternTask(Sysidle);
|
|
|
|
|
|
|
|
#endif
|