13 lines
221 B
C
13 lines
221 B
C
|
|
#ifndef _APP_LED_H_
|
||
|
|
#define _APP_LED_H_
|
||
|
|
typedef enum{
|
||
|
|
APP_LED_STATUS_IDEL,
|
||
|
|
APP_LED_STATUS_UPDATE_RDY,
|
||
|
|
APP_LED_STATUS_UPDATE_ING,
|
||
|
|
}app_led_status_t;
|
||
|
|
|
||
|
|
extern void app_led_set_status(app_led_status_t status);
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|