Files
Leakage-Control/calib_board/usr/bsp/bsp_Led.h
2026-01-22 19:24:33 +08:00

16 lines
170 B
C

#ifndef _BSP_LED_H_
#define _BSP_LED_H_
#include "main.h"
typedef struct
{
void (*Init)(void);
void (*Flash)(void);
}bsp_Led_t;
extern bsp_Led_t Led;
#endif