#ifndef __MBTK_LED_CONTROL_H__ | |
#define __MBTK_LED_CONTROL_H__ | |
typedef enum | |
{ | |
MBTK_LED_STATUS_CLOSE = 0, /*close status_led*/ | |
MBTK_LED_STATUS_OPEN = 1, /*open status_led*/ | |
}mbtk_led_status_type; | |
typedef enum | |
{ | |
MBTK_LED_STATUS = 0, /*status_led*/ | |
MBTK_LED_NET = 1, /*net_led*/ | |
MBTK_LED_MUM | |
}mbtk_led_all; | |
typedef struct | |
{ | |
int led_type; | |
int status; | |
}led_info_s; | |
int mbtk_led_set(led_info_s led_info); | |
#endif | |