sop板
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
361 B

#ifndef _BSP_LED_H
#define _BSP_LED_H
#include "bsp_config.h"
extern void bsp_led_init(void);
extern void bsp_led_set(U8 status);
extern void bsp_bled0_set();
extern void bsp_bled_set_multi(unsigned int dat);
#define BLED_SET_STATUS(N, status); do { \
BLED##N = status; \
}while(0);
#endif //_BSP_LED_H