Lf rfid (#196)
* add lf rfid workaround * add pwmn * carrier generator * proper exit for lf rfid Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
This commit is contained in:
@@ -15,6 +15,7 @@ BUILD_EXAMPLE_BLINK = 1
|
||||
BUILD_EXAMPLE_UART_WRITE = 1
|
||||
BUILD_EXAMPLE_INPUT_DUMP = 1
|
||||
BUILD_CC1101 = 1
|
||||
BUILD_LF_RFID = 1
|
||||
BUILD_SPEAKER_DEMO = 1
|
||||
endif
|
||||
|
||||
@@ -146,6 +147,20 @@ APP_INPUT = 1
|
||||
APP_GUI = 1
|
||||
endif
|
||||
|
||||
APP_LF_RFID ?= 0
|
||||
ifeq ($(APP_LF_RFID), 1)
|
||||
CFLAGS += -DAPP_LF_RFID
|
||||
BUILD_LF_RFID = 1
|
||||
endif
|
||||
BUILD_LF_RFID ?= 0
|
||||
ifeq ($(BUILD_LF_RFID), 1)
|
||||
CFLAGS += -DBUILD_LF_RFID
|
||||
C_SOURCES += $(wildcard $(APP_DIR)/lf-rfid/*.c)
|
||||
CPP_SOURCES += $(wildcard $(APP_DIR)/lf-rfid/*.cpp)
|
||||
APP_INPUT = 1
|
||||
APP_GUI = 1
|
||||
endif
|
||||
|
||||
APP_IRDA ?= 0
|
||||
ifeq ($(APP_IRDA), 1)
|
||||
CFLAGS += -DAPP_IRDA
|
||||
|
||||
Reference in New Issue
Block a user