From d894eb01e9c979d0eb51f9495a7cf7281c213302 Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Sun, 4 Sep 2022 18:39:21 +0200 Subject: removed old test --- fw/fe310/test/wifi.c | 91 ---------------------------------------------------- 1 file changed, 91 deletions(-) delete mode 100644 fw/fe310/test/wifi.c (limited to 'fw/fe310/test/wifi.c') diff --git a/fw/fe310/test/wifi.c b/fw/fe310/test/wifi.c deleted file mode 100644 index 92be3db..0000000 --- a/fw/fe310/test/wifi.c +++ /dev/null @@ -1,91 +0,0 @@ -#include -#include -#include -#include - -#include -#include -#include - -#include -#include -#include - -#include -#include -#include - -#include "app/app_root.h" -#include "app/app_status.h" - -#include "wifi.h" - -static void wifi_scan_handler(unsigned char type, unsigned char *buffer, uint16_t size) { - EVEWindowRoot *root = app_root(); - EVEWindow *window = eve_window_search(&root->w, "main"); - EVEForm *form = (EVEForm *)window->view; - EVESelectWidget *select = (EVESelectWidget *)eve_page_widget(&form->p, 0); - - eve_selectw_set_option(select, buffer + 1, size - 1); - eos_net_free(buffer, 0); - - app_root_refresh(); -} - -static void wifi_connect_handler(unsigned char type, unsigned char *buffer, uint16_t size) { - app_status_msg_set("WiFi connected", 1); - eos_net_free(buffer, 0); -} - -static void wifi_disconnect_handler(unsigned char type, unsigned char *buffer, uint16_t size) { - app_status_msg_set("WiFi disconnected", 1); - eos_net_free(buffer, 0); -} - -void app_wifi(EVEWindow *window, EVEViewStack *stack) { - 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.tspec.select.option_size = 1500, - }, - { - .widget.type = EVE_WIDGET_TYPE_SPACER, - .widget.g.w = APP_SCREEN_W, - .widget.g.h = 50, - }, - { - .label.title = "Password:", - - .widget.type = EVE_WIDGET_TYPE_STR, - .widget.tspec.str.str_size = 128, - }, - }; - - EVEForm *form = eve_form_create(window, stack, spec, 3, NULL, app_wifi_action, app_wifi_close); - eos_wifi_scan(NULL); -} - -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_selected(sel); - - if (ssid) { - eos_wifi_auth(ssid, str->str, NULL); - eos_wifi_connect(NULL); - } -} - -void app_wifi_close(EVEForm *form) { - eve_form_destroy(form); -} - -void app_wifi_init(void) { - eos_wifi_set_handler(EOS_WIFI_MTYPE_SCAN, wifi_scan_handler); - eos_wifi_set_handler(EOS_WIFI_MTYPE_CONNECT, wifi_connect_handler); - eos_wifi_set_handler(EOS_WIFI_MTYPE_DISCONNECT, wifi_disconnect_handler); -} -- cgit v1.2.3