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.
14 lines
329 B
14 lines
329 B
#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
|