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-03-05 12:47:27 +0300
committerGitHub <noreply@github.com>2021-03-05 12:47:27 +0300
commit7afdd14a4c3cc8fd2f808c8536e3175caefd2cd0 (patch)
tree57e69f739025d946d68fca72fb31e60c2d4375c0 /applications/applications.mk
parent025b77ecc11176414542bedb22e18a3f859f64c5 (diff)
Subghz app example (#365)
* Gui: ported submenu and view_dispatcher_remove_view from iButton branch * App gui-test: use backported submenu api * App subghz: initial commit * App subghz: syntax fix * App gui-test: fix submenu callback * App subghz: add subfolders to build * Gui view: c++ verison of with_view_model * Subghz app: simple spectrum settings view * Subghz app: add spectrum settings view to view manager * Subghz app: spectrum settings scene Co-authored-by: coreglitch <mail@s3f.ru>
Diffstat (limited to 'applications/applications.mk')
-rw-r--r--applications/applications.mk13
1 files changed, 13 insertions, 0 deletions
diff --git a/applications/applications.mk b/applications/applications.mk
index 73a66f19..fe6a5092 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_SUBGHZ = 1
endif
APP_NFC ?= 0
@@ -276,6 +277,18 @@ CFLAGS += -DBUILD_GUI_TEST
C_SOURCES += $(wildcard $(APP_DIR)/gui-test/*.c)
endif
+APP_SUBGHZ ?= 0
+ifeq ($(APP_SUBGHZ), 1)
+CFLAGS += -DAPP_SUBGHZ
+BUILD_SUBGHZ = 1
+endif
+BUILD_SUBGHZ ?= 0
+ifeq ($(BUILD_SUBGHZ), 1)
+CFLAGS += -DBUILD_SUBGHZ
+CPP_SOURCES += $(wildcard $(APP_DIR)/subghz/*.cpp)
+CPP_SOURCES += $(wildcard $(APP_DIR)/subghz/*/*.cpp)
+endif
+
APP_SDNFC ?= 0
ifeq ($(APP_SDNFC), 1)
CFLAGS += -DAPP_SDNFC