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/cell_pdp.c | |
parent | f5d49ec238769ca9c1fc58bf21e21f94a24f41ee (diff) |
added page touch ui event. added ui event handler to form create
Diffstat (limited to 'fw/fe310/test/cell_pdp.c')
-rw-r--r-- | fw/fe310/test/cell_pdp.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fw/fe310/test/cell_pdp.c b/fw/fe310/test/cell_pdp.c index 8bc8c41..9fc4a21 100644 --- a/fw/fe310/test/cell_pdp.c +++ b/fw/fe310/test/cell_pdp.c @@ -4,9 +4,6 @@ #include <string.h> #include <eos.h> -#include <event.h> -#include <spi.h> -#include <uart.h> #include <net.h> #include <cell.h> @@ -91,7 +88,7 @@ void app_cell_pdp(EVEWindow *window, EVEViewStack *stack) { }, }; - EVEForm *form = eve_form_create(window, stack, spec, 3, app_cell_pdp_action, app_cell_pdp_close); + EVEForm *form = eve_form_create(window, stack, spec, 3, NULL, app_cell_pdp_action, app_cell_pdp_close); } void app_cell_pdp_action(EVEForm *form) { |