sentry_gimbal_hzz/bsp/bsp_init.h

25 lines
535 B
C
Raw Normal View History

2022-11-13 21:46:52 +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"
2022-11-13 21:46:52 +08:00
/**
2023-01-01 17:32:22 +08:00
* @brief bsp层初始化统一入口,bsp组件,
* ,RobotoInit()
2022-11-13 21:46:52 +08:00
*
* @note CAN和串口会在注册实例的时候自动初始化,
*/
//
void BSPInit()
{
DWT_Init(168);
BSPLogInit();
}
2022-11-13 21:46:52 +08:00
#endif // !BSP_INIT_h