| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #pragma once
- #include "evil_portal_app.h"
- #include "evil_portal_custom_event.h"
- #include "evil_portal_uart.h"
- #include "scenes/evil_portal_scene.h"
- #include <gui/gui.h>
- #include <gui/modules/text_box.h>
- #include <gui/modules/text_input.h>
- #include <gui/modules/variable_item_list.h>
- #include <gui/scene_manager.h>
- #include <gui/view_dispatcher.h>
- #define NUM_MENU_ITEMS (5)
- #define EVIL_PORTAL_TEXT_BOX_STORE_SIZE (4096)
- #define UART_CH (FuriHalUartIdUSART1)
- #define SET_HTML_CMD "sethtml"
- #define SET_AP_CMD "setap"
- #define RESET_CMD "reset"
- struct Evil_PortalApp {
- Gui *gui;
- ViewDispatcher *view_dispatcher;
- SceneManager *scene_manager;
- FuriString* portal_logs;
- const char *command_queue[1];
- int command_index;
- bool has_command_queue;
- FuriString *text_box_store;
- size_t text_box_store_strlen;
- TextBox *text_box;
- VariableItemList *var_item_list;
- Evil_PortalUart *uart;
- TextInput* text_input;
- int selected_menu_index;
- int selected_option_index[NUM_MENU_ITEMS];
- const char *selected_tx_string;
- bool is_command;
- bool is_custom_tx_string;
- bool focus_console_start;
- bool show_stopscan_tip;
- bool sent_ap;
- bool sent_html;
- bool sent_reset;
- int BAUDRATE;
- char text_store[2][128 + 1];
- uint8_t *index_html;
- uint8_t *ap_name;
- };
- typedef enum {
- Evil_PortalAppViewVarItemList,
- Evil_PortalAppViewConsoleOutput,
- Evil_PortalAppViewStartPortal,
- Evil_PortalAppViewTextInput,
- } Evil_PortalAppView;
|