mirror of
https://gitee.com/cosyos/cosyos.git
synced 2026-02-05 11:29:44 +08:00
20 lines
635 B
C
20 lines
635 B
C
/**************************************************************************//**
|
|
* @item CosyOS-II Hook
|
|
* @file start_hook.c
|
|
* @brief 启动钩子
|
|
* @detail 在启动任务中被调用,可在此启动用户任务。
|
|
* @service uStartTask(task, status); 启动任务
|
|
uStartTask_Ready(task); 启动任务并就绪
|
|
uStartTask_Suspend(task); 启动任务并挂起
|
|
* @author 迟凯峰
|
|
* @version V2.0.0
|
|
* @date 2024.03.17
|
|
******************************************************************************/
|
|
|
|
#include "..\System\os_link.h"
|
|
|
|
void start_hook(void)
|
|
{
|
|
|
|
}
|