BLE: F3 integration (#260)
* BLE: working version * BLE: cleanup * BLE: update device description and DIS. * BLE: explicitly take semaphore and configure CLK48, bt subsystem status, remove LPM. * HAL: add missing api_hal_bt_is_alive symbol * TODO about valuemutex * duplicate f3-1 (f4) ioc from f3 * regenerate project * use target dir for ble glue path * update f4 from f3 Co-authored-by: coreglitch <mail@s3f.ru>
This commit is contained in:
@@ -11,6 +11,7 @@ ifeq ($(APP_RELEASE), 1)
|
||||
APP_MENU = 1
|
||||
APP_NFC = 1
|
||||
APP_POWER = 1
|
||||
APP_BT = 1
|
||||
APP_CLI = 1
|
||||
BUILD_IRDA = 1
|
||||
APP_IRUKAGOTCHI = 1
|
||||
@@ -45,10 +46,18 @@ endif
|
||||
APP_POWER ?= 0
|
||||
ifeq ($(APP_POWER), 1)
|
||||
APP_GUI = 1
|
||||
APP_CLI = 1
|
||||
CFLAGS += -DAPP_POWER
|
||||
C_SOURCES += $(wildcard $(APP_DIR)/power/*.c)
|
||||
endif
|
||||
|
||||
APP_BT ?= 0
|
||||
ifeq ($(APP_BT), 1)
|
||||
APP_CLI = 1
|
||||
CFLAGS += -DAPP_BT
|
||||
C_SOURCES += $(wildcard $(APP_DIR)/bt/*.c)
|
||||
endif
|
||||
|
||||
APP_MENU ?= 0
|
||||
ifeq ($(APP_MENU), 1)
|
||||
CFLAGS += -DAPP_MENU
|
||||
|
||||
Reference in New Issue
Block a user