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