FL-186 Add vibro demo (#234)

* add vibro demo
* add F2 support
This commit is contained in:
coreglitch
2020-11-13 01:26:49 +06:00
committed by GitHub
parent bf2f6e89ca
commit a61eef0f99
9 changed files with 59 additions and 2 deletions

View File

@@ -19,6 +19,7 @@ BUILD_EXAMPLE_INPUT_DUMP = 1
BUILD_CC1101 = 1
BUILD_LF_RFID = 1
BUILD_SPEAKER_DEMO = 1
BUILD_VIBRO_DEMO = 1
endif
APP_NFC ?= 0
@@ -204,6 +205,13 @@ APP_INPUT = 1
APP_GUI = 1
endif
BUILD_VIBRO_DEMO ?= 0
ifeq ($(BUILD_VIBRO_DEMO), 1)
CFLAGS += -DBUILD_VIBRO_DEMO
C_SOURCES += $(wildcard $(APP_DIR)/examples/vibro.c)
APP_INPUT = 1
endif
# device drivers
APP_GUI ?= 0