god-yuan-hero/User/bsp/bsp_api.c
2025-12-15 23:26:34 +08:00

34 lines
405 B
C

#include "bsp_api.h"
/* USER INCLUDE BEGIN */
/* USER INCLUDE END */
/* USER DEFINE BEGIN */
/* USER DEFINE END */
/* USER STRUCT BEGIN */
/* USER STRUCT END */
/* USER FUNCTION BEGIN */
/* USER FUNCTION END */
/* bsp层外设API实体 */
const struct Bsp_s Bsp = {
.gpio = {
.WritePin = BSP_GPIO_WritePin,
},
.timer_t = {
.Init = NULL,
},
.spi = {
.Init = NULL,
},
};