16 lines
170 B
C
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
|