Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolay Minaylov <nm29719@gmail.com>2021-11-26 16:53:51 +0300
committerGitHub <noreply@github.com>2021-11-26 16:53:51 +0300
commitf52e9fc578882bf17d29ea029adffdac70411ee3 (patch)
treedc3d6b16ccb1c83ecde2bec7f8148bf86299b793 /applications/applications.c
parent3ab9112c21f4791da34a175b98700af4785b89e1 (diff)
[FL-2051] BadUSB: new GUI (#844)
* [FL-2051] BadUsb: new GUI * add missing assets * skip empty lines and leading spaces * SubGhz: add alignment check to keystore mess with iv routine Co-authored-by: あく <alleteam@gmail.com>
Diffstat (limited to 'applications/applications.c')
-rw-r--r--applications/applications.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/applications/applications.c b/applications/applications.c
index 846d34f5..f9c12932 100644
--- a/applications/applications.c
+++ b/applications/applications.c
@@ -148,6 +148,10 @@ const FlipperApplication FLIPPER_APPS[] = {
{.app = ibutton_app, .name = "iButton", .stack_size = 2048, .icon = &A_iButton_14},
#endif
+#ifdef APP_BAD_USB
+ {.app = bad_usb_app, .name = "Bad USB", .stack_size = 2048, .icon = &A_BadUsb_14},
+#endif
+
};
const size_t FLIPPER_APPS_COUNT = sizeof(FLIPPER_APPS) / sizeof(FlipperApplication);
@@ -238,10 +242,6 @@ const FlipperApplication FLIPPER_DEBUG_APPS[] = {
{.app = usb_mouse_app, .name = "USB Mouse demo", .stack_size = 1024, .icon = NULL},
#endif
-#ifdef APP_BAD_USB
- {.app = bad_usb_app, .name = "Bad USB test", .stack_size = 2048, .icon = NULL},
-#endif
-
#ifdef APP_UART_ECHO
{.app = uart_echo_app, .name = "Uart Echo", .stack_size = 2048, .icon = NULL},
#endif