2020-10-07 09:37:43 +00:00
|
|
|
APP_DIR = $(PROJECT_ROOT)/applications
|
|
|
|
LIB_DIR = $(PROJECT_ROOT)/lib
|
|
|
|
|
|
|
|
CFLAGS += -I$(APP_DIR)
|
2021-04-27 19:13:41 +00:00
|
|
|
C_SOURCES += $(shell find $(APP_DIR) -name *.c)
|
|
|
|
CPP_SOURCES += $(shell find $(APP_DIR) -name *.cpp)
|
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
# Use SRV_* for autostart app
|
|
|
|
# Use APP_* for add app to build
|
2020-10-20 05:45:38 +00:00
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
APP_RELEASE ?= 1
|
2020-10-07 09:37:43 +00:00
|
|
|
ifeq ($(APP_RELEASE), 1)
|
2021-04-30 11:07:13 +00:00
|
|
|
# Main services
|
|
|
|
SRV_MENU = 1
|
|
|
|
SRV_POWER = 1
|
|
|
|
SRV_BT = 1
|
|
|
|
SRV_CLI = 1
|
|
|
|
SRV_SD_FILESYSTEM = 1
|
2021-05-11 08:29:44 +00:00
|
|
|
SRV_INTERNAL_STORAGE = 1
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_DOLPHIN = 1
|
2021-05-24 13:44:14 +00:00
|
|
|
SRV_NOTIFICATION = 1
|
2021-04-30 11:07:13 +00:00
|
|
|
|
|
|
|
# Main Apps
|
|
|
|
APP_IRDA = 1
|
|
|
|
APP_SUBGHZ = 1
|
|
|
|
APP_LF_RFID = 1
|
2021-05-06 19:51:20 +00:00
|
|
|
APP_NFC = 1
|
2021-04-30 11:07:13 +00:00
|
|
|
APP_GPIO_DEMO = 1
|
|
|
|
APP_MUSIC_PLAYER = 1
|
|
|
|
APP_IBUTTON = 1
|
2021-05-18 18:54:56 +00:00
|
|
|
APP_ARCHIVE = 1
|
2021-04-30 11:07:13 +00:00
|
|
|
|
|
|
|
# Debug and misc
|
|
|
|
APP_GUI_TEST = 1
|
|
|
|
APP_KEYPAD_TEST = 1
|
|
|
|
APP_ACCESSOR = 1
|
|
|
|
APP_SD_TEST = 1
|
|
|
|
APP_VIBRO_DEMO = 1
|
|
|
|
APP_SPEAKER_DEMO = 1
|
|
|
|
APP_EXAMPLE_BLINK = 1
|
|
|
|
APP_EXAMPLE_UART_WRITE = 1
|
|
|
|
APP_EXAMPLE_INPUT_DUMP = 1
|
2021-07-08 18:20:13 +00:00
|
|
|
APP_UNIT_TESTS = 0
|
2021-05-18 10:51:00 +00:00
|
|
|
APP_IRDA_MONITOR = 1
|
2021-05-19 09:43:15 +00:00
|
|
|
APP_VERTICAL_SCREEN = 1
|
2021-04-30 11:07:13 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
SRV_DOLPHIN ?= 0
|
|
|
|
ifeq ($(SRV_DOLPHIN), 1)
|
|
|
|
SRV_MENU = 1
|
|
|
|
CFLAGS += -DSRV_DOLPHIN
|
|
|
|
endif
|
|
|
|
|
|
|
|
SRV_POWER ?= 0
|
|
|
|
ifeq ($(SRV_POWER), 1)
|
|
|
|
SRV_GUI = 1
|
|
|
|
SRV_CLI = 1
|
|
|
|
CFLAGS += -DSRV_POWER
|
|
|
|
endif
|
|
|
|
|
|
|
|
SRV_BT ?= 0
|
|
|
|
ifeq ($(SRV_BT), 1)
|
|
|
|
SRV_CLI = 1
|
|
|
|
CFLAGS += -DSRV_BT
|
|
|
|
endif
|
|
|
|
|
|
|
|
SRV_MENU ?= 0
|
|
|
|
ifeq ($(SRV_MENU), 1)
|
|
|
|
CFLAGS += -DSRV_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
|
|
|
APP_MENU = 1
|
2020-12-10 14:25:20 +00:00
|
|
|
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)
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_INPUT = 1
|
|
|
|
SRV_GUI = 1
|
|
|
|
CFLAGS += -DAPP_MENU
|
2020-10-07 09:37:43 +00:00
|
|
|
endif
|
|
|
|
|
2021-05-19 09:43:15 +00:00
|
|
|
APP_VERTICAL_SCREEN ?= 0
|
|
|
|
ifeq ($(APP_VERTICAL_SCREEN), 1)
|
|
|
|
CFLAGS += -DAPP_VERTICAL_SCREEN
|
|
|
|
endif
|
|
|
|
|
2021-05-18 10:51:00 +00:00
|
|
|
APP_IRDA_MONITOR ?= 0
|
|
|
|
ifeq ($(APP_IRDA_MONITOR), 1)
|
|
|
|
CFLAGS += -DAPP_IRDA_MONITOR
|
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
APP_UNIT_TESTS ?= 0
|
|
|
|
ifeq ($(APP_UNIT_TESTS), 1)
|
|
|
|
CFLAGS += -DAPP_UNIT_TESTS
|
2020-10-07 09:37:43 +00:00
|
|
|
endif
|
|
|
|
|
2021-05-18 18:54:56 +00:00
|
|
|
APP_ARCHIVE ?= 0
|
|
|
|
ifeq ($(APP_NFC), 1)
|
|
|
|
CFLAGS += -DAPP_ARCHIVE
|
|
|
|
APP_ARCHIVE = 1
|
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_EXAMPLE_BLINK ?= 0
|
|
|
|
ifeq ($(SRV_EXAMPLE_BLINK), 1)
|
|
|
|
CFLAGS += -DSRV_EXAMPLE_BLINK
|
|
|
|
APP_EXAMPLE_BLINK = 1
|
|
|
|
endif
|
2020-10-07 09:37:43 +00:00
|
|
|
APP_EXAMPLE_BLINK ?= 0
|
|
|
|
ifeq ($(APP_EXAMPLE_BLINK), 1)
|
|
|
|
CFLAGS += -DAPP_EXAMPLE_BLINK
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_INPUT = 1
|
2020-10-07 09:37:43 +00:00
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_EXAMPLE_UART_WRITE ?= 0
|
|
|
|
ifeq ($(SRV_EXAMPLE_UART_WRITE), 1)
|
|
|
|
CFLAGS += -DSRV_EXAMPLE_UART_WRITE
|
|
|
|
APP_EXAMPLE_UART_WRITE = 1
|
|
|
|
endif
|
2020-10-07 09:37:43 +00:00
|
|
|
APP_EXAMPLE_UART_WRITE ?= 0
|
|
|
|
ifeq ($(APP_EXAMPLE_UART_WRITE), 1)
|
|
|
|
CFLAGS += -DAPP_EXAMPLE_UART_WRITE
|
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_EXAMPLE_IPC ?= 0
|
|
|
|
ifeq ($(SRV_EXAMPLE_IPC), 1)
|
|
|
|
CFLAGS += -DSRV_EXAMPLE_IPC
|
|
|
|
APP_EXAMPLE_IPC = 1
|
|
|
|
endif
|
2020-10-07 09:37:43 +00:00
|
|
|
APP_EXAMPLE_IPC ?= 0
|
|
|
|
ifeq ($(APP_EXAMPLE_IPC), 1)
|
|
|
|
CFLAGS += -DAPP_EXAMPLE_IPC
|
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_EXAMPLE_INPUT_DUMP ?= 0
|
|
|
|
ifeq ($(SRV_EXAMPLE_INPUT_DUMP), 1)
|
|
|
|
CFLAGS += -DSRV_EXAMPLE_INPUT_DUMP
|
|
|
|
APP_EXAMPLE_INPUT_DUMP = 1
|
|
|
|
endif
|
2020-10-07 09:37:43 +00:00
|
|
|
APP_EXAMPLE_INPUT_DUMP ?= 0
|
|
|
|
ifeq ($(APP_EXAMPLE_INPUT_DUMP), 1)
|
|
|
|
CFLAGS += -DAPP_EXAMPLE_INPUT_DUMP
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_INPUT = 1
|
2020-10-07 09:37:43 +00:00
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_EXAMPLE_QRCODE ?= 0
|
|
|
|
ifeq ($(SRV_EXAMPLE_QRCODE), 1)
|
|
|
|
CFLAGS += -DSRV_EXAMPLE_QRCODE
|
|
|
|
APP_EXAMPLE_QRCODE = 1
|
|
|
|
endif
|
2020-10-07 09:37:43 +00:00
|
|
|
APP_EXAMPLE_QRCODE ?= 0
|
|
|
|
ifeq ($(APP_EXAMPLE_QRCODE), 1)
|
|
|
|
CFLAGS += -DAPP_EXAMPLE_QRCODE
|
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
ifeq ($(APP_SUBGHZ), 1)
|
|
|
|
CFLAGS += -DAPP_SUBGHZ
|
|
|
|
SRV_INPUT = 1
|
|
|
|
SRV_GUI = 1
|
|
|
|
SRV_CLI = 1
|
2020-10-19 06:22:38 +00:00
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_LF_RFID ?= 0
|
|
|
|
ifeq ($(SRV_LF_RFID), 1)
|
|
|
|
CFLAGS += -DSRV_LF_RFID
|
|
|
|
APP_LF_RFID = 1
|
|
|
|
endif
|
2020-10-26 09:56:46 +00:00
|
|
|
APP_LF_RFID ?= 0
|
|
|
|
ifeq ($(APP_LF_RFID), 1)
|
|
|
|
CFLAGS += -DAPP_LF_RFID
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_INPUT = 1
|
|
|
|
SRV_GUI = 1
|
2020-10-26 09:56:46 +00:00
|
|
|
endif
|
|
|
|
|
2021-05-06 19:51:20 +00:00
|
|
|
APP_NFC ?= 0
|
|
|
|
ifeq ($(APP_NFC), 1)
|
|
|
|
CFLAGS += -DAPP_NFC
|
|
|
|
SRV_MENU = 1
|
|
|
|
SRV_INPUT = 1
|
|
|
|
SRV_GUI = 1
|
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_IRDA ?= 0
|
|
|
|
ifeq ($(SRV_IRDA), 1)
|
|
|
|
CFLAGS += -DSRV_IRDA
|
|
|
|
APP_IRDA = 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
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_INPUT = 1
|
|
|
|
SRV_GUI = 1
|
2020-10-23 09:39:11 +00:00
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_SD_TEST ?= 0
|
|
|
|
ifeq ($(SRV_SD_TEST), 1)
|
|
|
|
CFLAGS += -DSRV_SD_TEST
|
|
|
|
APP_SD_TEST = 1
|
|
|
|
endif
|
2020-11-14 16:24:38 +00:00
|
|
|
APP_SD_TEST ?= 0
|
|
|
|
ifeq ($(APP_SD_TEST), 1)
|
|
|
|
CFLAGS += -DAPP_SD_TEST
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_INPUT = 1
|
|
|
|
SRV_GUI = 1
|
|
|
|
SRV_SD_FILESYSTEM = 1
|
2020-11-14 16:24:38 +00:00
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_SPEAKER_DEMO ?= 0
|
|
|
|
ifeq ($(SRV_SPEAKER_DEMO), 1)
|
|
|
|
CFLAGS += -DSRV_SPEAKER_DEMO
|
|
|
|
APP_SPEAKER_DEMO = 1
|
|
|
|
endif
|
2020-10-26 07:16:54 +00:00
|
|
|
APP_SPEAKER_DEMO ?= 0
|
|
|
|
ifeq ($(APP_SPEAKER_DEMO), 1)
|
|
|
|
CFLAGS += -DAPP_SPEAKER_DEMO
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_INPUT = 1
|
|
|
|
SRV_GUI = 1
|
2020-10-26 07:16:54 +00:00
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
APP_VIBRO_DEMO ?= 0
|
|
|
|
ifeq ($(APP_VIBRO_DEMO), 1)
|
|
|
|
CFLAGS += -DAPP_VIBRO_DEMO
|
|
|
|
SRV_INPUT = 1
|
2020-11-12 19:26:49 +00:00
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_KEYPAD_TEST ?= 0
|
|
|
|
ifeq ($(SRV_KEYPAD_TEST), 1)
|
|
|
|
CFLAGS += -DSRV_KEYPAD_TEST
|
|
|
|
APP_KEYPAD_TEST = 1
|
|
|
|
endif
|
2021-03-10 12:38:01 +00:00
|
|
|
APP_KEYPAD_TEST ?= 0
|
|
|
|
ifeq ($(APP_KEYPAD_TEST), 1)
|
|
|
|
CFLAGS += -DAPP_KEYPAD_TEST
|
2021-04-30 11:07:13 +00:00
|
|
|
APP_KEYPAD_TEST = 1
|
2021-03-10 12:38:01 +00:00
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_ACCESSOR ?= 0
|
|
|
|
ifeq ($(SRV_ACCESSOR), 1)
|
|
|
|
CFLAGS += -DSRV_ACCESSOR
|
|
|
|
APP_ACCESSOR = 1
|
|
|
|
endif
|
2021-04-28 12:13:25 +00:00
|
|
|
APP_ACCESSOR ?= 0
|
|
|
|
ifeq ($(APP_ACCESSOR), 1)
|
|
|
|
CFLAGS += -DAPP_ACCESSOR
|
2021-04-30 11:07:13 +00:00
|
|
|
APP_ACCESSOR = 1
|
2021-04-28 12:13:25 +00:00
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_GPIO_DEMO ?= 0
|
|
|
|
ifeq ($(SRV_GPIO_DEMO), 1)
|
|
|
|
CFLAGS += -DSRV_GPIO_DEMO
|
|
|
|
APP_GPIO_DEMO = 1
|
|
|
|
endif
|
2020-11-14 10:08:07 +00:00
|
|
|
APP_GPIO_DEMO ?= 0
|
|
|
|
ifeq ($(APP_GPIO_DEMO), 1)
|
|
|
|
CFLAGS += -DAPP_GPIO_DEMO
|
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_MUSIC_PLAYER ?= 0
|
|
|
|
ifeq ($(SRV_MUSIC_PLAYER), 1)
|
|
|
|
CFLAGS += -DSRV_MUSIC_PLAYER
|
|
|
|
APP_MUSIC_PLAYER = 1
|
|
|
|
endif
|
2020-11-16 17:12:05 +00:00
|
|
|
APP_MUSIC_PLAYER ?= 0
|
|
|
|
ifeq ($(APP_MUSIC_PLAYER), 1)
|
|
|
|
CFLAGS += -DAPP_MUSIC_PLAYER
|
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_IBUTTON ?= 0
|
|
|
|
ifeq ($(SRV_IBUTTON), 1)
|
|
|
|
CFLAGS += -DSRV_IBUTTON
|
|
|
|
APP_IBUTTON = 1
|
|
|
|
endif
|
2020-11-16 21:10:58 +00:00
|
|
|
APP_IBUTTON ?= 0
|
|
|
|
ifeq ($(APP_IBUTTON), 1)
|
|
|
|
CFLAGS += -DAPP_IBUTTON
|
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_GUI_TEST ?= 0
|
|
|
|
ifeq ($(SRV_GUI_TEST), 1)
|
|
|
|
CFLAGS += -DSRV_GUI_TEST
|
|
|
|
APP_GUI_TEST = 1
|
|
|
|
endif
|
Implementation of some widgets based on real use cases and designs [FL-392][FL-809] (#315)
* gui test app
* aligned string draw functions
* add canvas_invert_color, canvas_draw_button_left, canvas_draw_button_right
* use new str and button fns in dialog
* real dialog mockup
* add new gui test app recipe
* submenu module init
* delete unused variable
* move buttons to element, add canvas_string_width fn, new center button element
* button icons
* submenu module
* use submenu module, switch views
* keyboard buttons img
* new font for keyboard
* text input (keyboard) module
* add text input to gui test app
* add gui tesst app to release build, fix flags
* handle transition from start and end position, fix input switch
* add long text support to text input
* canvas_string_width and the underlying u8g2_GetStrWidth now return uint16_t
* remove deprecated libs and apps
* canvas_font_max_height fn
* new element, aligned multiline text
* use multiline text instead of plain string
* fix second keyboard row, rename uppercase fn
* qwerty-like keyboard layout
* new icons for iButton app
* better dialog text position and events handling
* remove confusing comment
* new extended dialog module
* extended dialog module usage
* update docs
* new gui module, popup with timeout
* popup usage
* canvas, remove outdated canvas_font_max_height, use canvas_current_font_height
* use furi check
* use new view_enter and view_exit callback for timers
* add DrZlo to gui tester codeowner
Co-authored-by: aanper <mail@s3f.ru>
2021-02-04 23:35:06 +00:00
|
|
|
APP_GUI_TEST ?= 0
|
|
|
|
ifeq ($(APP_GUI_TEST), 1)
|
|
|
|
CFLAGS += -DAPP_GUI_TEST
|
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_SDNFC ?= 0
|
|
|
|
ifeq ($(SRV_SDNFC), 1)
|
|
|
|
CFLAGS += -DSRV_SDNFC
|
|
|
|
APP_SDNFC = 1
|
|
|
|
endif
|
2020-11-18 13:01:25 +00:00
|
|
|
APP_SDNFC ?= 0
|
|
|
|
ifeq ($(APP_SDNFC), 1)
|
|
|
|
CFLAGS += -DAPP_SDNFC
|
|
|
|
endif
|
2020-10-07 09:37:43 +00:00
|
|
|
# device drivers
|
2020-10-20 05:45:38 +00:00
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_GUI ?= 0
|
|
|
|
ifeq ($(SRV_GUI), 1)
|
|
|
|
CFLAGS += -DSRV_GUI
|
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
|
|
|
|
2021-05-11 08:29:44 +00:00
|
|
|
SRV_SD_FILESYSTEM ?= 0
|
2021-04-30 11:07:13 +00:00
|
|
|
ifeq ($(SRV_SD_FILESYSTEM), 1)
|
|
|
|
CFLAGS += -DSRV_SD_FILESYSTEM
|
2021-01-11 14:52:35 +00:00
|
|
|
endif
|
|
|
|
|
2021-05-11 08:29:44 +00:00
|
|
|
SRV_INTERNAL_STORAGE ?= 0
|
|
|
|
ifeq ($(SRV_INTERNAL_STORAGE), 1)
|
|
|
|
CFLAGS += -DSRV_INTERNAL_STORAGE
|
|
|
|
endif
|
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_INPUT ?= 0
|
|
|
|
ifeq ($(SRV_INPUT), 1)
|
|
|
|
CFLAGS += -DSRV_INPUT
|
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-12-01 18:47:46 +00:00
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_CLI ?= 0
|
|
|
|
ifeq ($(SRV_CLI), 1)
|
|
|
|
SRV_GUI = 1
|
|
|
|
CFLAGS += -DSRV_CLI
|
2020-12-01 18:47:46 +00:00
|
|
|
endif
|
2021-05-24 13:44:14 +00:00
|
|
|
|
|
|
|
SRV_NOTIFICATION ?= 0
|
|
|
|
ifeq ($(SRV_NOTIFICATION), 1)
|
|
|
|
CFLAGS += -DSRV_NOTIFICATION
|
|
|
|
endif
|