2020-10-07 09:37:43 +00:00
|
|
|
APP_DIR = $(PROJECT_ROOT)/applications
|
|
|
|
LIB_DIR = $(PROJECT_ROOT)/lib
|
|
|
|
|
|
|
|
CFLAGS += -I$(APP_DIR)
|
|
|
|
|
2020-10-20 05:45:38 +00:00
|
|
|
# Use APP_* for autostart app
|
|
|
|
# Use BUILD_* for add app to build
|
|
|
|
|
2020-10-19 06:56:12 +00:00
|
|
|
APP_RELEASE ?= 0
|
2020-10-07 09:37:43 +00:00
|
|
|
ifeq ($(APP_RELEASE), 1)
|
Display and UI implementation (#169)
* Menu app. Lib: add mlib submodule.
* Menu: new startup lib dependency definition
* Menu: hierarchy in menu. Cube: fix heap1/4 inconsistency, stack protection.
* GUI: rendering pipeline initial version.
* GUI: layered widget composing, FURI record. Menu: FURI record, api.
* GUI: input dispatching. Menu: switch to input from GUI.
* GUI, MENU: code style cleanup, fix type conversion warnings.
* GUI, Menu: syntax check.
* Makefile: check and reinit submodules, format.
* Menu: lock on event processing. Makefile: proper submodule initialization.
* Menu: fix stack corruption by queue.
* GUI: refactor.
* Makefile: format rule fix, st-util pid.
* GUI, Menu, FURI: format with clang-format.
* GUI, MENU: locks in critical sections, fix stack corruption, ready signaling.
* Makefile: clang format rule cleanup.
* GUI,MENU: migrate to new API.
* Applications: PRODUCTION_HW variable, skip drivers build on local target.
* refactor production build
* add git to dockerfile
* GUI: uncomment lock block
Co-authored-by: Aleksandr Kutuzov <aku@plooks.com>
2020-10-14 10:21:55 +00:00
|
|
|
APP_MENU = 1
|
2020-10-18 22:09:48 +00:00
|
|
|
APP_NFC = 1
|
2020-10-23 09:39:11 +00:00
|
|
|
BUILD_IRDA = 1
|
2020-10-20 05:45:38 +00:00
|
|
|
BUILD_EXAMPLE_BLINK = 1
|
|
|
|
BUILD_EXAMPLE_UART_WRITE = 1
|
|
|
|
BUILD_EXAMPLE_INPUT_DUMP = 1
|
|
|
|
BUILD_CC1101 = 1
|
2020-10-26 09:56:46 +00:00
|
|
|
BUILD_LF_RFID = 1
|
2020-10-26 07:16:54 +00:00
|
|
|
BUILD_SPEAKER_DEMO = 1
|
Display and UI implementation (#169)
* Menu app. Lib: add mlib submodule.
* Menu: new startup lib dependency definition
* Menu: hierarchy in menu. Cube: fix heap1/4 inconsistency, stack protection.
* GUI: rendering pipeline initial version.
* GUI: layered widget composing, FURI record. Menu: FURI record, api.
* GUI: input dispatching. Menu: switch to input from GUI.
* GUI, MENU: code style cleanup, fix type conversion warnings.
* GUI, Menu: syntax check.
* Makefile: check and reinit submodules, format.
* Menu: lock on event processing. Makefile: proper submodule initialization.
* Menu: fix stack corruption by queue.
* GUI: refactor.
* Makefile: format rule fix, st-util pid.
* GUI, Menu, FURI: format with clang-format.
* GUI, MENU: locks in critical sections, fix stack corruption, ready signaling.
* Makefile: clang format rule cleanup.
* GUI,MENU: migrate to new API.
* Applications: PRODUCTION_HW variable, skip drivers build on local target.
* refactor production build
* add git to dockerfile
* GUI: uncomment lock block
Co-authored-by: Aleksandr Kutuzov <aku@plooks.com>
2020-10-14 10:21:55 +00:00
|
|
|
endif
|
|
|
|
|
2020-10-18 22:09:48 +00:00
|
|
|
APP_NFC ?= 0
|
|
|
|
ifeq ($(APP_NFC), 1)
|
|
|
|
APP_MENU = 1
|
|
|
|
CFLAGS += -DAPP_NFC
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/nfc/*.c)
|
|
|
|
endif
|
|
|
|
|
Display and UI implementation (#169)
* Menu app. Lib: add mlib submodule.
* Menu: new startup lib dependency definition
* Menu: hierarchy in menu. Cube: fix heap1/4 inconsistency, stack protection.
* GUI: rendering pipeline initial version.
* GUI: layered widget composing, FURI record. Menu: FURI record, api.
* GUI: input dispatching. Menu: switch to input from GUI.
* GUI, MENU: code style cleanup, fix type conversion warnings.
* GUI, Menu: syntax check.
* Makefile: check and reinit submodules, format.
* Menu: lock on event processing. Makefile: proper submodule initialization.
* Menu: fix stack corruption by queue.
* GUI: refactor.
* Makefile: format rule fix, st-util pid.
* GUI, Menu, FURI: format with clang-format.
* GUI, MENU: locks in critical sections, fix stack corruption, ready signaling.
* Makefile: clang format rule cleanup.
* GUI,MENU: migrate to new API.
* Applications: PRODUCTION_HW variable, skip drivers build on local target.
* refactor production build
* add git to dockerfile
* GUI: uncomment lock block
Co-authored-by: Aleksandr Kutuzov <aku@plooks.com>
2020-10-14 10:21:55 +00:00
|
|
|
APP_MENU ?= 0
|
|
|
|
ifeq ($(APP_MENU), 1)
|
2020-10-20 05:45:38 +00:00
|
|
|
CFLAGS += -DAPP_MENU
|
|
|
|
BUILD_MENU = 1
|
|
|
|
endif
|
|
|
|
BUILD_MENU ?= 0
|
|
|
|
ifeq ($(BUILD_MENU), 1)
|
Display and UI implementation (#169)
* Menu app. Lib: add mlib submodule.
* Menu: new startup lib dependency definition
* Menu: hierarchy in menu. Cube: fix heap1/4 inconsistency, stack protection.
* GUI: rendering pipeline initial version.
* GUI: layered widget composing, FURI record. Menu: FURI record, api.
* GUI: input dispatching. Menu: switch to input from GUI.
* GUI, MENU: code style cleanup, fix type conversion warnings.
* GUI, Menu: syntax check.
* Makefile: check and reinit submodules, format.
* Menu: lock on event processing. Makefile: proper submodule initialization.
* Menu: fix stack corruption by queue.
* GUI: refactor.
* Makefile: format rule fix, st-util pid.
* GUI, Menu, FURI: format with clang-format.
* GUI, MENU: locks in critical sections, fix stack corruption, ready signaling.
* Makefile: clang format rule cleanup.
* GUI,MENU: migrate to new API.
* Applications: PRODUCTION_HW variable, skip drivers build on local target.
* refactor production build
* add git to dockerfile
* GUI: uncomment lock block
Co-authored-by: Aleksandr Kutuzov <aku@plooks.com>
2020-10-14 10:21:55 +00:00
|
|
|
APP_INPUT = 1
|
|
|
|
APP_GUI = 1
|
2020-10-20 05:45:38 +00:00
|
|
|
CFLAGS += -DBUILD_MENU
|
Display and UI implementation (#169)
* Menu app. Lib: add mlib submodule.
* Menu: new startup lib dependency definition
* Menu: hierarchy in menu. Cube: fix heap1/4 inconsistency, stack protection.
* GUI: rendering pipeline initial version.
* GUI: layered widget composing, FURI record. Menu: FURI record, api.
* GUI: input dispatching. Menu: switch to input from GUI.
* GUI, MENU: code style cleanup, fix type conversion warnings.
* GUI, Menu: syntax check.
* Makefile: check and reinit submodules, format.
* Menu: lock on event processing. Makefile: proper submodule initialization.
* Menu: fix stack corruption by queue.
* GUI: refactor.
* Makefile: format rule fix, st-util pid.
* GUI, Menu, FURI: format with clang-format.
* GUI, MENU: locks in critical sections, fix stack corruption, ready signaling.
* Makefile: clang format rule cleanup.
* GUI,MENU: migrate to new API.
* Applications: PRODUCTION_HW variable, skip drivers build on local target.
* refactor production build
* add git to dockerfile
* GUI: uncomment lock block
Co-authored-by: Aleksandr Kutuzov <aku@plooks.com>
2020-10-14 10:21:55 +00:00
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/menu/*.c)
|
2020-10-17 08:48:52 +00:00
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/app-loader/*.c)
|
2020-10-07 09:37:43 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
APP_TEST ?= 0
|
|
|
|
ifeq ($(APP_TEST), 1)
|
|
|
|
CFLAGS += -DAPP_TEST
|
|
|
|
C_SOURCES += $(APP_DIR)/tests/furiac_test.c
|
|
|
|
C_SOURCES += $(APP_DIR)/tests/furi_record_test.c
|
|
|
|
C_SOURCES += $(APP_DIR)/tests/test_index.c
|
2020-10-10 10:32:06 +00:00
|
|
|
C_SOURCES += $(APP_DIR)/tests/minunit_test.c
|
2020-10-13 08:22:43 +00:00
|
|
|
C_SOURCES += $(APP_DIR)/tests/furi_valuemutex_test.c
|
2020-10-15 18:23:18 +00:00
|
|
|
C_SOURCES += $(APP_DIR)/tests/furi_pubsub_test.c
|
2020-10-15 17:36:15 +00:00
|
|
|
C_SOURCES += $(APP_DIR)/tests/furi_memmgr_test.c
|
2020-10-26 09:26:15 +00:00
|
|
|
C_SOURCES += $(APP_DIR)/tests/furi_value_expanders_test.c
|
|
|
|
C_SOURCES += $(APP_DIR)/tests/furi_event_test.c
|
2020-10-07 09:37:43 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
APP_EXAMPLE_BLINK ?= 0
|
|
|
|
ifeq ($(APP_EXAMPLE_BLINK), 1)
|
|
|
|
CFLAGS += -DAPP_EXAMPLE_BLINK
|
2020-10-20 05:45:38 +00:00
|
|
|
BUILD_EXAMPLE_BLINK = 1
|
|
|
|
endif
|
|
|
|
BUILD_EXAMPLE_BLINK ?= 0
|
|
|
|
ifeq ($(BUILD_EXAMPLE_BLINK), 1)
|
|
|
|
CFLAGS += -DBUILD_EXAMPLE_BLINK
|
2020-10-07 09:37:43 +00:00
|
|
|
C_SOURCES += $(APP_DIR)/examples/blink.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
APP_EXAMPLE_UART_WRITE ?= 0
|
|
|
|
ifeq ($(APP_EXAMPLE_UART_WRITE), 1)
|
|
|
|
CFLAGS += -DAPP_EXAMPLE_UART_WRITE
|
2020-10-20 05:45:38 +00:00
|
|
|
BUILD_EXAMPLE_UART_WRITE = 1
|
|
|
|
endif
|
|
|
|
BUILD_EXAMPLE_UART_WRITE ?= 0
|
|
|
|
ifeq ($(BUILD_EXAMPLE_UART_WRITE), 1)
|
|
|
|
CFLAGS += -DBUILD_EXAMPLE_UART_WRITE
|
2020-10-07 09:37:43 +00:00
|
|
|
C_SOURCES += $(APP_DIR)/examples/uart_write.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
APP_EXAMPLE_IPC ?= 0
|
|
|
|
ifeq ($(APP_EXAMPLE_IPC), 1)
|
|
|
|
CFLAGS += -DAPP_EXAMPLE_IPC
|
2020-10-20 05:45:38 +00:00
|
|
|
BUILD_EXAMPLE_IPC = 1
|
|
|
|
endif
|
|
|
|
BUILD_EXAMPLE_IPC ?= 0
|
|
|
|
ifeq ($(BUILD_EXAMPLE_IPC), 1)
|
|
|
|
CFLAGS += -DBUILD_EXAMPLE_IPC
|
2020-10-07 09:37:43 +00:00
|
|
|
C_SOURCES += $(APP_DIR)/examples/ipc.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
APP_EXAMPLE_INPUT_DUMP ?= 0
|
|
|
|
ifeq ($(APP_EXAMPLE_INPUT_DUMP), 1)
|
|
|
|
CFLAGS += -DAPP_EXAMPLE_INPUT_DUMP
|
2020-10-20 05:45:38 +00:00
|
|
|
BUILD_EXAMPLE_INPUT_DUMP = 1
|
|
|
|
endif
|
|
|
|
BUILD_EXAMPLE_INPUT_DUMP ?= 0
|
|
|
|
ifeq ($(BUILD_EXAMPLE_INPUT_DUMP), 1)
|
|
|
|
CFLAGS += -DBUILD_EXAMPLE_INPUT_DUMP
|
2020-10-07 09:37:43 +00:00
|
|
|
C_SOURCES += $(APP_DIR)/examples/input_dump.c
|
|
|
|
APP_INPUT = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
APP_EXAMPLE_QRCODE ?= 0
|
|
|
|
ifeq ($(APP_EXAMPLE_QRCODE), 1)
|
|
|
|
CFLAGS += -DAPP_EXAMPLE_QRCODE
|
2020-10-20 05:45:38 +00:00
|
|
|
BUILD_EXAMPLE_QRCODE = 1
|
|
|
|
endif
|
|
|
|
BUILD_EXAMPLE_QRCODE ?= 0
|
|
|
|
ifeq ($(BUILD_EXAMPLE_QRCODE), 1)
|
|
|
|
CFLAGS += -DBUILD_EXAMPLE_QRCODE
|
2020-10-07 09:37:43 +00:00
|
|
|
C_SOURCES += $(APP_DIR)/examples/u8g2_qrcode.c
|
|
|
|
C_SOURCES += $(LIB_DIR)/qrcode/qrcode.c
|
|
|
|
APP_DISPLAY = 1
|
|
|
|
endif
|
|
|
|
|
2020-10-20 05:45:38 +00:00
|
|
|
# deprecated
|
2020-10-07 09:37:43 +00:00
|
|
|
APP_EXAMPLE_DISPLAY ?= 0
|
|
|
|
ifeq ($(APP_EXAMPLE_DISPLAY), 1)
|
|
|
|
CFLAGS += -DAPP_EXAMPLE_DISPLAY
|
|
|
|
C_SOURCES += $(APP_DIR)/examples/u8g2_example.c
|
|
|
|
APP_DISPLAY = 1
|
|
|
|
endif
|
|
|
|
|
2020-10-08 14:37:19 +00:00
|
|
|
APP_EXAMPLE_FATFS ?= 0
|
|
|
|
ifeq ($(APP_EXAMPLE_FATFS), 1)
|
|
|
|
CFLAGS += -DAPP_EXAMPLE_FATFS
|
2020-10-20 05:45:38 +00:00
|
|
|
BUILD_EXAMPLE_FATFS = 1
|
|
|
|
endif
|
|
|
|
BUILD_EXAMPLE_FATFS ?= 0
|
|
|
|
ifeq ($(BUILD_EXAMPLE_FATFS), 1)
|
|
|
|
CFLAGS += -DBUILD_EXAMPLE_FATFS
|
2020-10-08 14:37:19 +00:00
|
|
|
C_SOURCES += $(APP_DIR)/examples/fatfs_list.c
|
|
|
|
APP_INPUT = 1
|
|
|
|
APP_DISPLAY = 1
|
|
|
|
endif
|
|
|
|
|
2020-10-13 10:39:59 +00:00
|
|
|
APP_CC1101 ?= 0
|
|
|
|
ifeq ($(APP_CC1101), 1)
|
|
|
|
CFLAGS += -DAPP_CC1101
|
2020-10-20 05:45:38 +00:00
|
|
|
BUILD_CC1101 = 1
|
2020-10-13 10:39:59 +00:00
|
|
|
endif
|
2020-10-20 05:45:38 +00:00
|
|
|
BUILD_CC1101 ?= 0
|
|
|
|
ifeq ($(BUILD_CC1101), 1)
|
|
|
|
CFLAGS += -DBUILD_CC1101
|
2020-10-19 06:22:38 +00:00
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/cc1101-workaround/*.c)
|
|
|
|
CPP_SOURCES += $(wildcard $(APP_DIR)/cc1101-workaround/*.cpp)
|
|
|
|
APP_INPUT = 1
|
|
|
|
APP_GUI = 1
|
|
|
|
endif
|
|
|
|
|
2020-10-26 09:56:46 +00:00
|
|
|
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
|
|
|
|
|
2020-10-26 07:16:54 +00:00
|
|
|
APP_IRDA ?= 0
|
2020-10-23 09:39:11 +00:00
|
|
|
ifeq ($(APP_IRDA), 1)
|
|
|
|
CFLAGS += -DAPP_IRDA
|
|
|
|
BUILD_IRDA = 1
|
|
|
|
endif
|
|
|
|
BUILD_IRDA ?= 0
|
|
|
|
ifeq ($(BUILD_IRDA), 1)
|
|
|
|
CFLAGS += -DBUILD_IRDA
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/irda/*.c)
|
|
|
|
APP_INPUT = 1
|
|
|
|
APP_GUI = 1
|
|
|
|
endif
|
|
|
|
|
2020-10-26 07:16:54 +00:00
|
|
|
APP_SPEAKER_DEMO ?= 0
|
|
|
|
ifeq ($(APP_SPEAKER_DEMO), 1)
|
|
|
|
CFLAGS += -DAPP_SPEAKER_DEMO
|
|
|
|
BUILD_SPEAKER_DEMO = 1
|
|
|
|
endif
|
|
|
|
BUILD_SPEAKER_DEMO ?= 0
|
|
|
|
ifeq ($(BUILD_SPEAKER_DEMO), 1)
|
|
|
|
CFLAGS += -DBUILD_SPEAKER_DEMO
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/coreglitch_demo_0/*.c)
|
|
|
|
APP_INPUT = 1
|
|
|
|
APP_GUI = 1
|
|
|
|
endif
|
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
# device drivers
|
2020-10-20 05:45:38 +00:00
|
|
|
|
Display and UI implementation (#169)
* Menu app. Lib: add mlib submodule.
* Menu: new startup lib dependency definition
* Menu: hierarchy in menu. Cube: fix heap1/4 inconsistency, stack protection.
* GUI: rendering pipeline initial version.
* GUI: layered widget composing, FURI record. Menu: FURI record, api.
* GUI: input dispatching. Menu: switch to input from GUI.
* GUI, MENU: code style cleanup, fix type conversion warnings.
* GUI, Menu: syntax check.
* Makefile: check and reinit submodules, format.
* Menu: lock on event processing. Makefile: proper submodule initialization.
* Menu: fix stack corruption by queue.
* GUI: refactor.
* Makefile: format rule fix, st-util pid.
* GUI, Menu, FURI: format with clang-format.
* GUI, MENU: locks in critical sections, fix stack corruption, ready signaling.
* Makefile: clang format rule cleanup.
* GUI,MENU: migrate to new API.
* Applications: PRODUCTION_HW variable, skip drivers build on local target.
* refactor production build
* add git to dockerfile
* GUI: uncomment lock block
Co-authored-by: Aleksandr Kutuzov <aku@plooks.com>
2020-10-14 10:21:55 +00:00
|
|
|
APP_GUI ?= 0
|
|
|
|
ifeq ($(APP_GUI), 1)
|
|
|
|
CFLAGS += -DAPP_GUI
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/gui/*.c)
|
2020-10-15 16:15:53 +00:00
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/backlight-control/*.c)
|
Display and UI implementation (#169)
* Menu app. Lib: add mlib submodule.
* Menu: new startup lib dependency definition
* Menu: hierarchy in menu. Cube: fix heap1/4 inconsistency, stack protection.
* GUI: rendering pipeline initial version.
* GUI: layered widget composing, FURI record. Menu: FURI record, api.
* GUI: input dispatching. Menu: switch to input from GUI.
* GUI, MENU: code style cleanup, fix type conversion warnings.
* GUI, Menu: syntax check.
* Makefile: check and reinit submodules, format.
* Menu: lock on event processing. Makefile: proper submodule initialization.
* Menu: fix stack corruption by queue.
* GUI: refactor.
* Makefile: format rule fix, st-util pid.
* GUI, Menu, FURI: format with clang-format.
* GUI, MENU: locks in critical sections, fix stack corruption, ready signaling.
* Makefile: clang format rule cleanup.
* GUI,MENU: migrate to new API.
* Applications: PRODUCTION_HW variable, skip drivers build on local target.
* refactor production build
* add git to dockerfile
* GUI: uncomment lock block
Co-authored-by: Aleksandr Kutuzov <aku@plooks.com>
2020-10-14 10:21:55 +00:00
|
|
|
endif
|
2020-10-07 09:37:43 +00:00
|
|
|
|
2020-10-20 05:45:38 +00:00
|
|
|
# deprecated
|
2020-10-07 09:37:43 +00:00
|
|
|
ifeq ($(APP_DISPLAY), 1)
|
|
|
|
CFLAGS += -DAPP_DISPLAY
|
|
|
|
C_SOURCES += $(APP_DIR)/display-u8g2/display-u8g2.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
APP_INPUT ?= 0
|
|
|
|
ifeq ($(APP_INPUT), 1)
|
|
|
|
CFLAGS += -DAPP_INPUT
|
|
|
|
C_SOURCES += $(APP_DIR)/input/input.c
|
Display and UI implementation (#169)
* Menu app. Lib: add mlib submodule.
* Menu: new startup lib dependency definition
* Menu: hierarchy in menu. Cube: fix heap1/4 inconsistency, stack protection.
* GUI: rendering pipeline initial version.
* GUI: layered widget composing, FURI record. Menu: FURI record, api.
* GUI: input dispatching. Menu: switch to input from GUI.
* GUI, MENU: code style cleanup, fix type conversion warnings.
* GUI, Menu: syntax check.
* Makefile: check and reinit submodules, format.
* Menu: lock on event processing. Makefile: proper submodule initialization.
* Menu: fix stack corruption by queue.
* GUI: refactor.
* Makefile: format rule fix, st-util pid.
* GUI, Menu, FURI: format with clang-format.
* GUI, MENU: locks in critical sections, fix stack corruption, ready signaling.
* Makefile: clang format rule cleanup.
* GUI,MENU: migrate to new API.
* Applications: PRODUCTION_HW variable, skip drivers build on local target.
* refactor production build
* add git to dockerfile
* GUI: uncomment lock block
Co-authored-by: Aleksandr Kutuzov <aku@plooks.com>
2020-10-14 10:21:55 +00:00
|
|
|
endif
|