diff options
author | Uros Majstorovic <majstor@majstor.org> | 2022-03-30 13:22:19 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2022-03-30 13:22:19 +0200 |
commit | c6962c5700f99441538dafa346626bb7e6d12488 (patch) | |
tree | f463808368735c290312b7bff906f2599293d0ac /fw/fe310/test/app/app_root.h | |
parent | 0a5f8363fe4e6b3c7d4f17fde61e00ab63e43bcb (diff) |
sock api fixed; net reply messages fixed
Diffstat (limited to 'fw/fe310/test/app/app_root.h')
-rw-r--r-- | fw/fe310/test/app/app_root.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/fw/fe310/test/app/app_root.h b/fw/fe310/test/app/app_root.h new file mode 100644 index 0000000..b085344 --- /dev/null +++ b/fw/fe310/test/app/app_root.h @@ -0,0 +1,12 @@ +#include <stdint.h> + +#define APP_SCREEN_W 480 +#define APP_SCREEN_H 800 +#define APP_STATUS_H 60 + +#define APP_FONT_HANDLE 31 + +EVEWindowRoot *app_root(void); +void app_root_refresh(void); + +void app_root_init(eve_view_constructor_t home_page, int b); |