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.mk
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.mk')
-rw-r--r--applications/applications.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/applications/applications.mk b/applications/applications.mk
index 191a5427..2d6820b5 100644
--- a/applications/applications.mk
+++ b/applications/applications.mk
@@ -24,7 +24,7 @@ SRV_STORAGE = 1
# Apps
SRV_DESKTOP = 1
APP_ARCHIVE = 1
-APP_GPIO_TEST = 1
+APP_GPIO = 1
APP_IBUTTON = 1
APP_IRDA = 1
APP_LF_RFID = 1
@@ -135,9 +135,9 @@ SRV_GUI = 1
endif
-APP_GPIO_TEST ?= 0
-ifeq ($(APP_GPIO_TEST), 1)
-CFLAGS += -DAPP_GPIO_TEST
+APP_GPIO ?= 0
+ifeq ($(APP_GPIO), 1)
+CFLAGS += -DAPP_GPIO
SRV_GUI = 1
endif