big refactoring and features added
This commit is contained in:
19
App/Services/ui_status.h
Normal file
19
App/Services/ui_status.h
Normal file
@ -0,0 +1,19 @@
|
||||
/**
|
||||
* @file ui_status.h
|
||||
* @brief Future LCD/UI abstraction used by standalone profile mode.
|
||||
*/
|
||||
|
||||
#ifndef UI_STATUS_H
|
||||
#define UI_STATUS_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "app_types.h"
|
||||
|
||||
void ui_status_init(void);
|
||||
void ui_status_set_profile_name(const char *profile_name);
|
||||
void ui_status_set_mode(app_mode_t mode);
|
||||
void ui_status_set_error(uint8_t error_flags);
|
||||
app_event_t ui_status_poll_event(uint32_t tick_10ms);
|
||||
|
||||
#endif /* UI_STATUS_H */
|
||||
Reference in New Issue
Block a user