20 lines
440 B
C
20 lines
440 B
C
/**
|
|
* @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 */
|