diff options
author | Uros Majstorovic <majstor@majstor.org> | 2021-02-28 21:21:07 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2021-02-28 21:21:07 +0100 |
commit | 3d67aa36fdf8164cf367acc71b8d7fe55fd10cc6 (patch) | |
tree | 712c4e4a692a81cc6710d0ed551851f188911b0a /fw/fe310/eos/app/app_screen.h | |
parent | 82a6206422ed658a99716fbd18e33942cebc833b (diff) |
refacotr app/ api
Diffstat (limited to 'fw/fe310/eos/app/app_screen.h')
-rw-r--r-- | fw/fe310/eos/app/app_screen.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fw/fe310/eos/app/app_screen.h b/fw/fe310/eos/app/app_screen.h new file mode 100644 index 0000000..1e266d4 --- /dev/null +++ b/fw/fe310/eos/app/app_screen.h @@ -0,0 +1,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); |