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:
authorgornekich <n.gorbadey@gmail.com>2021-09-30 23:03:28 +0300
committerGitHub <noreply@github.com>2021-09-30 23:03:28 +0300
commit638f2763088cefd40a3e279d4db36bd64f418b1d (patch)
treee55697628e14644dfbe55f4cd6b368715d61f89f /applications/applications.c
parent7a89791b2ba41df526df35b625c625adaeef083d (diff)
[FL-1884] GPIO application (#732)
* gpio: rename gpio application * bq25896: add reading OTG config * furi-hal-power: add is_otg_enabled API * gpio: introduce new GPIO app, add OTG enable / disable * variable-item-list: add enter callback * gpio: add output test view and scene * gpio app: fix GpioItemTester -> GpioItemTest Co-authored-by: あく <alleteam@gmail.com>
Diffstat (limited to 'applications/applications.c')
-rwxr-xr-xapplications/applications.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/applications/applications.c b/applications/applications.c
index 9c014450..f16d1fde 100755
--- a/applications/applications.c
+++ b/applications/applications.c
@@ -20,7 +20,7 @@ extern int32_t accessor_app(void* p);
extern int32_t archive_app(void* p);
extern int32_t blink_test_app(void* p);
extern int32_t flipper_test_app(void* p);
-extern int32_t gpio_test_app(void* p);
+extern int32_t gpio_app(void* p);
extern int32_t ibutton_app(void* p);
extern int32_t irda_app(void* p);
extern int32_t irda_monitor_app(void* p);
@@ -132,8 +132,8 @@ const FlipperApplication FLIPPER_APPS[] = {
{.app = ibutton_app, .name = "iButton", .stack_size = 2048, .icon = &A_iButton_14},
#endif
-#ifdef APP_GPIO_TEST
- {.app = gpio_test_app, .name = "GPIO", .stack_size = 1024, .icon = &A_GPIO_14},
+#ifdef APP_GPIO
+ {.app = gpio_app, .name = "GPIO", .stack_size = 1024, .icon = &A_GPIO_14},
#endif
};