Files
secs2-SJ/usr/bsp/bsp_LED.h
T
2026-09-09 14:54:40 +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