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:
authorSG <who.just.the.doctor@gmail.com>2021-11-20 01:19:31 +0300
committerGitHub <noreply@github.com>2021-11-20 01:19:31 +0300
commit013ed64cbbb6ba0a97958a7e7e96bfc667bda176 (patch)
treebc84670721a0cdbe92fde465038d7f6ab2ee69fb /applications/applications.c
parent4303945748d62a0563d62a5d5ddb5d470715d3d3 (diff)
UART echo app (#831)
* HAL: add context to UART IRQ's * Apps: uart echo/log application * Sync api * Another api sync
Diffstat (limited to 'applications/applications.c')
-rw-r--r--applications/applications.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/applications/applications.c b/applications/applications.c
index 7cc105bb..fe58e56a 100644
--- a/applications/applications.c
+++ b/applications/applications.c
@@ -20,6 +20,7 @@ extern int32_t desktop_srv(void* p);
extern int32_t accessor_app(void* p);
extern int32_t archive_app(void* p);
extern int32_t bad_usb_app(void* p);
+extern int32_t uart_echo_app(void* p);
extern int32_t blink_test_app(void* p);
extern int32_t bt_debug_app(void* p);
extern int32_t delay_test_app(void* p);
@@ -236,6 +237,10 @@ const FlipperApplication FLIPPER_DEBUG_APPS[] = {
{.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
+
#ifdef APP_IRDA_MONITOR
{.app = irda_monitor_app, .name = "Irda Monitor", .stack_size = 1024, .icon = NULL},
#endif