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:
authorあく <alleteam@gmail.com>2021-10-17 23:34:36 +0300
committerGitHub <noreply@github.com>2021-10-17 23:34:36 +0300
commitf390060922995d732301015fe2cca8ac4680b053 (patch)
tree07c45c57120f65172f3278d55cf1583f003b6a74 /applications/applications.mk
parent19be061693dc9f17f2c17f8d2bb156c543defcda (diff)
[FL-1942] Applications: Display Test. u8g2 usage refactoring. #770
Diffstat (limited to 'applications/applications.mk')
-rw-r--r--applications/applications.mk23
1 files changed, 15 insertions, 8 deletions
diff --git a/applications/applications.mk b/applications/applications.mk
index ade6491c..1168ee82 100644
--- a/applications/applications.mk
+++ b/applications/applications.mk
@@ -38,12 +38,14 @@ APP_MUSIC_PLAYER = 1
# Debug
APP_ACCESSOR = 1
-APP_BLINK = 1
+APP_BLINK = 1
APP_IRDA_MONITOR = 1
APP_KEYPAD_TEST = 1
APP_SD_TEST = 1
-APP_VIBRO_DEMO = 1
+APP_VIBRO_TEST = 1
APP_USB_TEST = 1
+APP_DISPLAY_TEST = 1
+
APP_USB_MOUSE = 1
APP_BAD_USB = 1
endif
@@ -117,9 +119,9 @@ SRV_GUI = 1
endif
-APP_VIBRO_DEMO ?= 0
-ifeq ($(APP_VIBRO_DEMO), 1)
-CFLAGS += -DAPP_VIBRO_DEMO
+APP_VIBRO_TEST ?= 0
+ifeq ($(APP_VIBRO_TEST), 1)
+CFLAGS += -DAPP_VIBRO_TEST
SRV_GUI = 1
endif
@@ -127,21 +129,26 @@ endif
APP_USB_TEST ?= 0
ifeq ($(APP_USB_TEST), 1)
CFLAGS += -DAPP_USB_TEST
-SRV_INPUT = 1
SRV_GUI = 1
endif
+
+APP_DISPLAY_TEST ?= 0
+ifeq ($(APP_DISPLAY_TEST), 1)
+CFLAGS += -DAPP_DISPLAY_TEST
+SRV_GUI = 1
+endif
+
+
APP_USB_MOUSE ?= 0
ifeq ($(APP_USB_MOUSE), 1)
CFLAGS += -DAPP_USB_MOUSE
-SRV_INPUT = 1
SRV_GUI = 1
endif
APP_BAD_USB ?= 0
ifeq ($(APP_BAD_USB), 1)
CFLAGS += -DAPP_BAD_USB
-SRV_INPUT = 1
SRV_GUI = 1
endif