Files
tronone-h7-scaffold/User_Code/bsp/bsp_init.h

23 lines
579 B
C
Raw Normal View History

2025-11-16 17:19:14 +08:00
#ifndef BSP_INIT_h
#define BSP_INIT_h
#include "bsp_init.h"
// #include "bsp_log.h"
#include "bsp_dwt.h"
// #include "bsp_usb.h"
/**
* @brief bsp层初始化统一入口,bsp组件,
* ,RobotoInit()
*
* @note CAN和串口会在注册实例的时候自动初始化,
*/
2025-11-16 17:42:34 +08:00
void BSPInit()
2025-11-16 17:19:14 +08:00
{
DWT_Init(480); //Todo:修改这里以适配喵板cpufreq
// BSPLogInit();
}
#endif // !BSP_INIT_h