mirror of
https://gitee.com/cosyos/cosyos.git
synced 2026-08-21 22:28:12 +08:00
17 lines
489 B
C
17 lines
489 B
C
/**************************************************************************//**
|
|
* @item CosyOS-III Hook
|
|
* @file init_hook.c
|
|
* @brief 初始化钩子
|
|
* @details 在主函数中首先被调用,适用于初始化时钟、GPIO、寄存器等工作。
|
|
* @author 迟凯峰
|
|
* @version V1.0.0
|
|
* @date 2025.02.08
|
|
******************************************************************************/
|
|
|
|
#include "..\System\os_link.h"
|
|
|
|
void init_hook(void)
|
|
{
|
|
|
|
}
|