blob: 1e266d4b87978fdb17abb8e78bf9e188042602c5 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <stdint.h>
#define APP_SCREEN_W 480
#define APP_SCREEN_H 800
#define APP_STATUS_H 60
EVEScreen *app_screen(void);
void app_screen_init(eve_view_constructor_t home_page);
void app_screen_refresh(void);
|