mirror of
https://gitee.com/cosyos/cosyos.git
synced 2026-08-17 16:52:27 +08:00
22 lines
706 B
C
22 lines
706 B
C
/**************************************************************************//**
|
|
* @item CosyOS-III Hook
|
|
* @file idle_hook.c
|
|
* @brief 空闲钩子
|
|
* @details 在系统空闲任务(Sysidle)中被调用,用户可添加自己的代码做一些没有实时性要求的工作。
|
|
* @author 迟凯峰
|
|
* @version V2.0.1
|
|
* @date 2025.08.08
|
|
******************************************************************************/
|
|
|
|
#include "CosyOS.H"
|
|
|
|
#if 1 /* 编译开关 *//* 如果该函数在用户文件中实现且此处的弱定义无效,可手动移除该函数(1 改为 0)*/ \
|
|
&& (SYSCFG_IDLEHOOK == __ENABLED__)
|
|
|
|
__WEAK void idle_hook(void)
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|