diff options
Diffstat (limited to 'fw/fe310/eos/app/app_status.c')
-rw-r--r-- | fw/fe310/eos/app/app_status.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/fw/fe310/eos/app/app_status.c b/fw/fe310/eos/app/app_status.c index 3fdb45a..11cc36d 100644 --- a/fw/fe310/eos/app/app_status.c +++ b/fw/fe310/eos/app/app_status.c @@ -5,16 +5,14 @@ #include "eve/eve.h" #include "eve/eve_kbd.h" -#include "eve/screen/screen.h" #include "eve/screen/window.h" -#include "eve/screen/view.h" #include "app_status.h" -int app_status_touch(EVEView *view, EVETouch *touch, uint16_t evt, uint8_t tag0) { - return 0; +uint8_t app_status_draw(EVEView *view, uint8_t tag0) { + return eve_view_clear(view, tag0); } -uint8_t app_status_draw(EVEView *view, uint8_t tag0) { - return tag0; +int app_status_touch(EVEView *view, EVETouch *touch, uint16_t evt, uint8_t tag0) { + return 0; } |