From 9ce2ce35d5f94c5d0b83ca8d9ceb21c8c1cf3cd4 Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Sat, 27 Feb 2021 03:17:28 +0100 Subject: cell/wifi refactoring --- fw/fe310/test/cell_pdp.c | 125 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 fw/fe310/test/cell_pdp.c (limited to 'fw/fe310/test/cell_pdp.c') diff --git a/fw/fe310/test/cell_pdp.c b/fw/fe310/test/cell_pdp.c new file mode 100644 index 0000000..955b42e --- /dev/null +++ b/fw/fe310/test/cell_pdp.c @@ -0,0 +1,125 @@ +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include + +#include + +#include +#include + +#include +#include +#include +#include +#include + +#include + +#include + +#include "status.h" +#include "cell_pdp.h" + +extern EVEFont *_app_font_default; + +static void cell_pdp_connect(char *apn, char *user, char *pass) { + unsigned char *buffer, *p; + + buffer = eos_net_alloc(); + buffer[0] = EOS_CELL_MTYPE_PDP | EOS_CELL_MTYPE_PDP_CONFIG; + p = buffer + 1; + strcpy(p, user); + p += strlen(user) + 1; + strcpy(p, user); + p += strlen(user) + 1; + strcpy(p, pass); + p += strlen(pass) + 1; + eos_net_send(EOS_NET_MTYPE_CELL, buffer, p - buffer, 1); + + buffer = eos_net_alloc(); + buffer[0] = EOS_CELL_MTYPE_PDP | EOS_CELL_MTYPE_PDP_CONNECT; + eos_net_send(EOS_NET_MTYPE_CELL, buffer, 1, 0); +} + +static void cell_pdp_disconnect(void) { + unsigned char *buffer = eos_net_alloc(); + buffer[0] = EOS_CELL_MTYPE_PDP | EOS_CELL_MTYPE_PDP_DISCONNECT; + eos_net_send(EOS_NET_MTYPE_CELL, buffer, 1, 0); +} + +static void cell_pdp_handler(unsigned char type, unsigned char *buffer, uint16_t size) { + switch (type) { + case EOS_CELL_MTYPE_PDP_CONNECT: + app_status_msg_set("Cell data connected", 1); + break; + + case EOS_CELL_MTYPE_PDP_DISCONNECT: + app_status_msg_set("Cell data disconnected", 1); + break; + + default: + break; + } + eos_net_free(buffer, 0); +} + +void app_cell_pdp(EVEWindow *window, EVEViewStack *stack) { + APPWidgetSpec spec[] = { + { + .label.g.w = APP_SCREEN_W / 3, + .label.font = _app_font_default, + .label.title = "APN:", + + .widget.type = EVE_WIDGET_TYPE_STR, + .widget.g.w = APP_SCREEN_W - APP_SCREEN_W / 3, + .widget.spec.str.font = _app_font_default, + .widget.spec.str.str_size = 128, + }, + { + .label.g.w = APP_SCREEN_W / 3, + .label.font = _app_font_default, + .label.title = "User:", + + .widget.type = EVE_WIDGET_TYPE_STR, + .widget.g.w = APP_SCREEN_W - APP_SCREEN_W / 3, + .widget.spec.str.font = _app_font_default, + .widget.spec.str.str_size = 128, + }, + { + .label.g.w = APP_SCREEN_W / 3, + .label.font = _app_font_default, + .label.title = "Pass:", + + .widget.type = EVE_WIDGET_TYPE_STR, + .widget.g.w = APP_SCREEN_W - APP_SCREEN_W / 3, + .widget.spec.str.font = _app_font_default, + .widget.spec.str.str_size = 128, + }, + }; + + EVEForm *form = app_form_create(window, stack, spec, 3, app_cell_pdp_action, app_cell_pdp_close); +} + +void app_cell_pdp_action(EVEForm *form) { + EVEStrWidget *apn = (EVEStrWidget *)eve_form_widget(form, 0); + EVEStrWidget *user = (EVEStrWidget *)eve_form_widget(form, 1); + EVEStrWidget *pass = (EVEStrWidget *)eve_form_widget(form, 2); + + cell_pdp_connect(apn->str, user->str, pass->str); +} + +void app_cell_pdp_close(EVEForm *form) { + app_form_destroy(form); +} + +void app_cell_pdp_init(void) { + eos_cell_set_handler(EOS_CELL_MTYPE_PDP, cell_pdp_handler); +} -- cgit v1.2.3