9e62f08e4d
* U2F implementation prototype * U2F data encryption and store, user confirmation request * remove debug prints * fix notification bug in chrome * split u2f_alloc into u2f_init and u2f_alloc * typo fix, furi-hal-trng -> furi-hal-random * rand/srand redefinition * SubGhz: a little bit of Dante. * u2f_data naming fix Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
104 lines
3.0 KiB
C
104 lines
3.0 KiB
C
#include <furi.h>
|
|
#include <furi-hal.h>
|
|
|
|
#include <gui/view.h>
|
|
#include <gui/view_dispatcher.h>
|
|
#include <gui/modules/submenu.h>
|
|
#include <gui/gui.h>
|
|
|
|
typedef struct {
|
|
Gui* gui;
|
|
ViewDispatcher* view_dispatcher;
|
|
Submenu* submenu;
|
|
} UsbTestApp;
|
|
|
|
typedef enum {
|
|
UsbTestSubmenuIndexEnable,
|
|
UsbTestSubmenuIndexDisable,
|
|
UsbTestSubmenuIndexVcpSingle,
|
|
UsbTestSubmenuIndexVcpDual,
|
|
UsbTestSubmenuIndexHid,
|
|
UsbTestSubmenuIndexHidU2F,
|
|
} SubmenuIndex;
|
|
|
|
void usb_test_submenu_callback(void* context, uint32_t index) {
|
|
furi_assert(context);
|
|
//UsbTestApp* app = context;
|
|
if(index == UsbTestSubmenuIndexEnable) {
|
|
furi_hal_usb_enable();
|
|
} else if(index == UsbTestSubmenuIndexDisable) {
|
|
furi_hal_usb_disable();
|
|
} else if(index == UsbTestSubmenuIndexVcpSingle) {
|
|
furi_hal_usb_set_config(&usb_cdc_single);
|
|
} else if(index == UsbTestSubmenuIndexVcpDual) {
|
|
furi_hal_usb_set_config(&usb_cdc_dual);
|
|
} else if(index == UsbTestSubmenuIndexHid) {
|
|
furi_hal_usb_set_config(&usb_hid);
|
|
} else if(index == UsbTestSubmenuIndexHidU2F) {
|
|
furi_hal_usb_set_config(&usb_hid_u2f);
|
|
}
|
|
}
|
|
|
|
uint32_t usb_test_exit(void* context) {
|
|
return VIEW_NONE;
|
|
}
|
|
|
|
UsbTestApp* usb_test_app_alloc() {
|
|
UsbTestApp* app = furi_alloc(sizeof(UsbTestApp));
|
|
|
|
// Gui
|
|
app->gui = furi_record_open("gui");
|
|
|
|
// View dispatcher
|
|
app->view_dispatcher = view_dispatcher_alloc();
|
|
view_dispatcher_enable_queue(app->view_dispatcher);
|
|
view_dispatcher_attach_to_gui(app->view_dispatcher, app->gui, ViewDispatcherTypeFullscreen);
|
|
|
|
// Views
|
|
app->submenu = submenu_alloc();
|
|
submenu_add_item(
|
|
app->submenu, "Enable", UsbTestSubmenuIndexEnable, usb_test_submenu_callback, app);
|
|
submenu_add_item(
|
|
app->submenu, "Disable", UsbTestSubmenuIndexDisable, usb_test_submenu_callback, app);
|
|
submenu_add_item(
|
|
app->submenu, "Single VCP", UsbTestSubmenuIndexVcpSingle, usb_test_submenu_callback, app);
|
|
submenu_add_item(
|
|
app->submenu, "Dual VCP", UsbTestSubmenuIndexVcpDual, usb_test_submenu_callback, app);
|
|
submenu_add_item(
|
|
app->submenu, "HID KB+Mouse", UsbTestSubmenuIndexHid, usb_test_submenu_callback, app);
|
|
submenu_add_item(
|
|
app->submenu, "HID U2F", UsbTestSubmenuIndexHidU2F, usb_test_submenu_callback, app);
|
|
view_set_previous_callback(submenu_get_view(app->submenu), usb_test_exit);
|
|
view_dispatcher_add_view(app->view_dispatcher, 0, submenu_get_view(app->submenu));
|
|
|
|
// Switch to menu
|
|
view_dispatcher_switch_to_view(app->view_dispatcher, 0);
|
|
|
|
return app;
|
|
}
|
|
|
|
void usb_test_app_free(UsbTestApp* app) {
|
|
furi_assert(app);
|
|
|
|
// Free views
|
|
view_dispatcher_remove_view(app->view_dispatcher, 0);
|
|
submenu_free(app->submenu);
|
|
view_dispatcher_free(app->view_dispatcher);
|
|
|
|
// Close gui record
|
|
furi_record_close("gui");
|
|
app->gui = NULL;
|
|
|
|
// Free rest
|
|
free(app);
|
|
}
|
|
|
|
int32_t usb_test_app(void* p) {
|
|
UsbTestApp* app = usb_test_app_alloc();
|
|
|
|
view_dispatcher_run(app->view_dispatcher);
|
|
|
|
usb_test_app_free(app);
|
|
return 0;
|
|
}
|