16 lines
169 B
C
16 lines
169 B
C
#ifndef _BSP_LED_H_
|
|
#define _BSP_LED_H_
|
|
|
|
#include "main.h"
|
|
|
|
|
|
typedef struct
|
|
{
|
|
void (*init)(void);
|
|
void (*task)(void);
|
|
}bsp_led_t;
|
|
|
|
extern bsp_led_t led;
|
|
|
|
#endif
|