mirror of
https://gitee.com/cosyos/cosyos.git
synced 2026-08-18 00:58:59 +08:00
24 lines
796 B
C
24 lines
796 B
C
/**************************************************************************//**
|
|
* @item CosyOS-III Hook
|
|
* @file debug_hook.c
|
|
* @brief DEBUG钩子
|
|
* @details 在系统调试任务中被调用,用户可自行实现DEBUG信息的输出。
|
|
* @author 迟凯峰
|
|
* @version V2.0.1
|
|
* @date 2025.08.08
|
|
******************************************************************************/
|
|
|
|
#include "CosyOS.H"
|
|
|
|
#if 1 /* 编译开关 *//* 如果该函数在用户文件中实现且此处的弱定义无效,可手动移除该函数(1 改为 0)*/ \
|
|
&& (SYSCFG_DEBUGGING == __ENABLED__)
|
|
#if (SYSCFG_DEBUG_SENDLEN == __DISABLED__)
|
|
__WEAK void debug_hook(char _XDATA_MEM_ *p)
|
|
#else
|
|
__WEAK void debug_hook(char _XDATA_MEM_ *p, s_u16_t len)
|
|
#endif
|
|
{
|
|
|
|
}
|
|
#endif
|