From b45c75151af9e31c2016fa30dc071f9695d6369c Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Tue, 9 Aug 2022 23:07:38 +0200 Subject: fixed test --- fw/fe310/test/wifi.c | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'fw/fe310/test/wifi.c') diff --git a/fw/fe310/test/wifi.c b/fw/fe310/test/wifi.c index e7522e3..92be3db 100644 --- a/fw/fe310/test/wifi.c +++ b/fw/fe310/test/wifi.c @@ -4,8 +4,8 @@ #include #include -#include -#include +#include +#include #include #include @@ -15,8 +15,6 @@ #include #include -#include - #include "app/app_root.h" #include "app/app_status.h" @@ -28,7 +26,7 @@ static void wifi_scan_handler(unsigned char type, unsigned char *buffer, uint16_ EVEForm *form = (EVEForm *)window->view; EVESelectWidget *select = (EVESelectWidget *)eve_page_widget(&form->p, 0); - eve_selectw_option_set(select, buffer + 1, size - 1); + eve_selectw_set_option(select, buffer + 1, size - 1); eos_net_free(buffer, 0); app_root_refresh(); @@ -45,14 +43,14 @@ static void wifi_disconnect_handler(unsigned char type, unsigned char *buffer, u } void app_wifi(EVEWindow *window, EVEViewStack *stack) { - EVEWidgetSpec spec[] = { + EVEFormSpec spec[] = { { .label.g.w = APP_SCREEN_W, .label.title = "Select network:", .widget.type = EVE_WIDGET_TYPE_SELECT, .widget.g.w = APP_SCREEN_W, - .widget.spec.select.option_size = 1500, + .widget.tspec.select.option_size = 1500, }, { .widget.type = EVE_WIDGET_TYPE_SPACER, @@ -63,7 +61,7 @@ void app_wifi(EVEWindow *window, EVEViewStack *stack) { .label.title = "Password:", .widget.type = EVE_WIDGET_TYPE_STR, - .widget.spec.str.str_size = 128, + .widget.tspec.str.str_size = 128, }, }; @@ -74,7 +72,7 @@ void app_wifi(EVEWindow *window, EVEViewStack *stack) { void app_wifi_action(EVEForm *form) { EVESelectWidget *sel = (EVESelectWidget *)eve_page_widget(&form->p, 0); EVEStrWidget *str = (EVEStrWidget *)eve_page_widget(&form->p, 2); - char *ssid = eve_selectw_option_get_select(sel); + char *ssid = eve_selectw_option_selected(sel); if (ssid) { eos_wifi_auth(ssid, str->str, NULL); -- cgit v1.2.3