diff options
author | Uros Majstorovic <majstor@majstor.org> | 2021-03-29 13:32:44 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2021-03-29 13:32:44 +0200 |
commit | bee76182044dd50cf561d1a76c05af7c7be68dfa (patch) | |
tree | da21522a6e085ef58400502385bc8d691695ebac /fw/fe310/test/phone.c | |
parent | f5d49ec238769ca9c1fc58bf21e21f94a24f41ee (diff) |
added page touch ui event. added ui event handler to form create
Diffstat (limited to 'fw/fe310/test/phone.c')
-rw-r--r-- | fw/fe310/test/phone.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fw/fe310/test/phone.c b/fw/fe310/test/phone.c index 0bf1c04..c447234 100644 --- a/fw/fe310/test/phone.c +++ b/fw/fe310/test/phone.c @@ -4,8 +4,6 @@ #include <string.h> #include <eos.h> -#include <event.h> -#include <spi.h> #include <i2s.h> #include <net.h> #include <cell.h> @@ -92,7 +90,7 @@ void app_phone(EVEWindow *window, EVEViewStack *stack) { }, }; - EVEForm *form = eve_form_create(window, stack, spec, 1, app_phone_action, NULL); + EVEForm *form = eve_form_create(window, stack, spec, 1, NULL, app_phone_action, NULL); } void app_phone_action(EVEForm *form) { |