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:
authorits your bedtime <23366927+itsyourbedtime@users.noreply.github.com>2021-03-10 15:38:01 +0300
committerGitHub <noreply@github.com>2021-03-10 15:38:01 +0300
commit468ee0978570f7968a637d782d08bd5b4f3d8004 (patch)
treeada12fd9978477b0f93120ba604486f37834d6b1 /applications/applications.mk
parent78e1b79139f02f0dc9d4e4c3eaeb6c30fde6d6bb (diff)
[FL-931] keypad test app, canvas draw circle/disc functions (#364)
* new keypad test app, added canvas circle/disc fn * resources cleanup on exit * fix - release mutex Co-authored-by: coreglitch <mail@s3f.ru>
Diffstat (limited to 'applications/applications.mk')
-rw-r--r--applications/applications.mk14
1 files changed, 14 insertions, 0 deletions
diff --git a/applications/applications.mk b/applications/applications.mk
index fe6a5092..99855836 100644
--- a/applications/applications.mk
+++ b/applications/applications.mk
@@ -30,6 +30,7 @@ BUILD_MUSIC_PLAYER = 1
BUILD_FLOOPPER_BLOOPPER = 1
BUILD_IBUTTON = 1
BUILD_GUI_TEST = 1
+BUILD_KEYPAD_TEST = 1
BUILD_SUBGHZ = 1
endif
@@ -222,6 +223,19 @@ C_SOURCES += $(wildcard $(APP_DIR)/examples/vibro.c)
APP_INPUT = 1
endif
+APP_KEYPAD_TEST ?= 0
+ifeq ($(APP_KEYPAD_TEST), 1)
+CFLAGS += -DAPP_KEYPAD_TEST
+BUILD_KEYPAD_TEST = 1
+endif
+BUILD_KEYPAD_TEST ?= 0
+ifeq ($(BUILD_KEYPAD_TEST), 1)
+CFLAGS += -DBUILD_KEYPAD_TEST
+C_SOURCES += $(APP_DIR)/examples/keypad_test.c
+BUILD_KEYPAD_TEST = 1
+endif
+
+
APP_GPIO_DEMO ?= 0
ifeq ($(APP_GPIO_DEMO), 1)
CFLAGS += -DAPP_GPIO_DEMO