2020-10-07 09:37:43 +00:00
|
|
|
APP_DIR = $(PROJECT_ROOT)/applications
|
2021-09-28 13:10:13 +00:00
|
|
|
LIB_DIR = $(PROJECT_ROOT)/lib
|
2020-10-07 09:37:43 +00:00
|
|
|
|
|
|
|
CFLAGS += -I$(APP_DIR)
|
2021-09-30 19:50:58 +00:00
|
|
|
C_SOURCES += $(shell find $(APP_DIR) -name "*.c")
|
|
|
|
CPP_SOURCES += $(shell find $(APP_DIR) -name "*.cpp")
|
2021-04-27 19:13:41 +00:00
|
|
|
|
2020-10-07 09:37:43 +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-08-07 16:54:42 +00:00
|
|
|
# Services
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_BT = 1
|
|
|
|
SRV_CLI = 1
|
|
|
|
SRV_DIALOGS = 1
|
|
|
|
SRV_DOLPHIN = 1
|
|
|
|
SRV_GUI = 1
|
|
|
|
SRV_INPUT = 1
|
|
|
|
SRV_LOADER = 1
|
2021-05-24 13:44:14 +00:00
|
|
|
SRV_NOTIFICATION = 1
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_POWER = 1
|
2021-08-02 11:15:24 +00:00
|
|
|
SRV_POWER_OBSERVER = 1
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_STORAGE = 1
|
2021-04-30 11:07:13 +00:00
|
|
|
|
2021-08-07 16:54:42 +00:00
|
|
|
# Apps
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_DESKTOP = 1
|
|
|
|
APP_ARCHIVE = 1
|
2021-09-30 20:03:28 +00:00
|
|
|
APP_GPIO = 1
|
2021-09-28 13:10:13 +00:00
|
|
|
APP_IBUTTON = 1
|
|
|
|
APP_IRDA = 1
|
|
|
|
APP_LF_RFID = 1
|
|
|
|
APP_NFC = 1
|
|
|
|
APP_SUBGHZ = 1
|
|
|
|
APP_ABOUT = 1
|
2021-08-07 16:54:42 +00:00
|
|
|
|
|
|
|
# Plugins
|
2021-04-30 11:07:13 +00:00
|
|
|
APP_MUSIC_PLAYER = 1
|
|
|
|
|
2021-08-07 16:54:42 +00:00
|
|
|
# Debug
|
2021-04-30 11:07:13 +00:00
|
|
|
APP_ACCESSOR = 1
|
2021-09-28 13:10:13 +00:00
|
|
|
APP_BLINK = 1
|
2021-08-07 16:54:42 +00:00
|
|
|
APP_IRDA_MONITOR = 1
|
|
|
|
APP_KEYPAD_TEST = 1
|
2021-09-28 13:10:13 +00:00
|
|
|
APP_SD_TEST = 1
|
2021-07-08 18:20:13 +00:00
|
|
|
APP_UNIT_TESTS = 0
|
2021-08-07 16:54:42 +00:00
|
|
|
APP_VIBRO_DEMO = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
# Applications
|
|
|
|
# that will be shown in menu
|
|
|
|
# Prefix with APP_*
|
2021-08-02 11:15:24 +00:00
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
|
2021-05-18 10:51:00 +00:00
|
|
|
APP_IRDA_MONITOR ?= 0
|
|
|
|
ifeq ($(APP_IRDA_MONITOR), 1)
|
|
|
|
CFLAGS += -DAPP_IRDA_MONITOR
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_GUI = 1
|
2021-05-18 10:51:00 +00:00
|
|
|
endif
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
|
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-09-28 09:40:39 +00:00
|
|
|
|
2021-05-18 18:54:56 +00:00
|
|
|
APP_ARCHIVE ?= 0
|
2021-09-28 13:10:13 +00:00
|
|
|
ifeq ($(APP_ARCHIVE), 1)
|
2021-05-18 18:54:56 +00:00
|
|
|
CFLAGS += -DAPP_ARCHIVE
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_GUI = 1
|
2021-05-18 18:54:56 +00:00
|
|
|
endif
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
|
2021-08-07 16:54:42 +00:00
|
|
|
APP_BLINK ?= 0
|
|
|
|
ifeq ($(APP_BLINK), 1)
|
|
|
|
CFLAGS += -DAPP_BLINK
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_GUI = 1
|
2020-10-07 09:37:43 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
APP_SUBGHZ ?= 0
|
2021-04-30 11:07:13 +00:00
|
|
|
ifeq ($(APP_SUBGHZ), 1)
|
|
|
|
CFLAGS += -DAPP_SUBGHZ
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_GUI = 1
|
|
|
|
SRV_CLI = 1
|
2020-10-19 06:22:38 +00:00
|
|
|
endif
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
|
|
|
|
APP_ABOUT ?= 0
|
2021-09-20 18:39:52 +00:00
|
|
|
ifeq ($(APP_ABOUT), 1)
|
|
|
|
CFLAGS += -DAPP_ABOUT
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_GUI = 1
|
2021-09-20 18:39:52 +00:00
|
|
|
endif
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
|
2020-10-26 09:56:46 +00:00
|
|
|
APP_LF_RFID ?= 0
|
|
|
|
ifeq ($(APP_LF_RFID), 1)
|
|
|
|
CFLAGS += -DAPP_LF_RFID
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_GUI = 1
|
2020-10-26 09:56:46 +00:00
|
|
|
endif
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
|
2021-05-06 19:51:20 +00:00
|
|
|
APP_NFC ?= 0
|
|
|
|
ifeq ($(APP_NFC), 1)
|
|
|
|
CFLAGS += -DAPP_NFC
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_GUI = 1
|
2021-05-06 19:51:20 +00:00
|
|
|
endif
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
|
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-09-28 13:10:13 +00:00
|
|
|
SRV_GUI = 1
|
2020-10-23 09:39:11 +00:00
|
|
|
endif
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
APP_VIBRO_DEMO ?= 0
|
|
|
|
ifeq ($(APP_VIBRO_DEMO), 1)
|
|
|
|
CFLAGS += -DAPP_VIBRO_DEMO
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_GUI = 1
|
2020-11-12 19:26:49 +00:00
|
|
|
endif
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
|
2021-03-10 12:38:01 +00:00
|
|
|
APP_KEYPAD_TEST ?= 0
|
|
|
|
ifeq ($(APP_KEYPAD_TEST), 1)
|
|
|
|
CFLAGS += -DAPP_KEYPAD_TEST
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_GUI = 1
|
2021-03-10 12:38:01 +00:00
|
|
|
endif
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
|
2021-04-28 12:13:25 +00:00
|
|
|
APP_ACCESSOR ?= 0
|
|
|
|
ifeq ($(APP_ACCESSOR), 1)
|
|
|
|
CFLAGS += -DAPP_ACCESSOR
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_GUI = 1
|
2021-04-28 12:13:25 +00:00
|
|
|
endif
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
|
2021-09-30 20:03:28 +00:00
|
|
|
APP_GPIO ?= 0
|
|
|
|
ifeq ($(APP_GPIO), 1)
|
|
|
|
CFLAGS += -DAPP_GPIO
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_GUI = 1
|
2020-11-14 10:08:07 +00:00
|
|
|
endif
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
|
2020-11-16 17:12:05 +00:00
|
|
|
APP_MUSIC_PLAYER ?= 0
|
|
|
|
ifeq ($(APP_MUSIC_PLAYER), 1)
|
|
|
|
CFLAGS += -DAPP_MUSIC_PLAYER
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_GUI = 1
|
2020-11-16 17:12:05 +00:00
|
|
|
endif
|
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
|
2020-11-16 21:10:58 +00:00
|
|
|
APP_IBUTTON ?= 0
|
|
|
|
ifeq ($(APP_IBUTTON), 1)
|
|
|
|
CFLAGS += -DAPP_IBUTTON
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_GUI = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
# Services
|
|
|
|
# that will start with OS
|
|
|
|
# Prefix with SRV_*
|
|
|
|
|
|
|
|
|
|
|
|
SRV_BT ?= 0
|
|
|
|
ifeq ($(SRV_BT), 1)
|
|
|
|
CFLAGS += -DSRV_BT
|
|
|
|
SRV_CLI = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
SRV_DESKTOP ?= 0
|
|
|
|
ifeq ($(SRV_DESKTOP), 1)
|
|
|
|
CFLAGS += -DSRV_DESKTOP
|
2021-09-28 14:42:52 +00:00
|
|
|
SRV_DOLPHIN = 1
|
|
|
|
SRV_STORAGE = 1
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_GUI = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
SRV_DOLPHIN ?= 0
|
|
|
|
ifeq ($(SRV_DOLPHIN), 1)
|
|
|
|
CFLAGS += -DSRV_DOLPHIN
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
SRV_POWER_OBSERVER ?= 0
|
|
|
|
ifeq ($(SRV_POWER_OBSERVER), 1)
|
|
|
|
CFLAGS += -DSRV_POWER_OBSERVER
|
|
|
|
SRV_POWER = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
SRV_POWER ?= 0
|
|
|
|
ifeq ($(SRV_POWER), 1)
|
|
|
|
CFLAGS += -DSRV_POWER
|
|
|
|
SRV_GUI = 1
|
|
|
|
SRV_CLI = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
SRV_LOADER ?= 0
|
|
|
|
ifeq ($(SRV_LOADER), 1)
|
|
|
|
CFLAGS += -DSRV_LOADER
|
|
|
|
SRV_GUI = 1
|
|
|
|
# Loader autostart hook
|
|
|
|
LOADER_AUTOSTART ?= ""
|
2021-09-29 04:18:28 +00:00
|
|
|
ifneq ($(strip $(LOADER_AUTOSTART)), "")
|
2021-09-28 13:10:13 +00:00
|
|
|
CFLAGS += -DLOADER_AUTOSTART="\"$(LOADER_AUTOSTART)\""
|
|
|
|
endif
|
|
|
|
# Loader autostart hook END
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
SRV_DIALOGS ?= 0
|
|
|
|
ifeq ($(SRV_DIALOGS), 1)
|
|
|
|
CFLAGS += -DSRV_DIALOGS
|
|
|
|
SRV_GUI = 1
|
2020-11-16 21:10:58 +00:00
|
|
|
endif
|
|
|
|
|
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
|
2021-09-28 13:10:13 +00:00
|
|
|
SRV_INPUT = 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-07 09:37:43 +00:00
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
|
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-09-28 13:10:13 +00:00
|
|
|
|
2021-04-30 11:07:13 +00:00
|
|
|
SRV_CLI ?= 0
|
|
|
|
ifeq ($(SRV_CLI), 1)
|
|
|
|
CFLAGS += -DSRV_CLI
|
2020-12-01 18:47:46 +00:00
|
|
|
endif
|
2021-05-24 13:44:14 +00:00
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
|
2021-05-24 13:44:14 +00:00
|
|
|
SRV_NOTIFICATION ?= 0
|
|
|
|
ifeq ($(SRV_NOTIFICATION), 1)
|
|
|
|
CFLAGS += -DSRV_NOTIFICATION
|
|
|
|
endif
|
[FL-1191][FL-1524] Filesystem rework (#568)
* FS-Api: removed datetime manipulation functions and most of the file flags
* Filesystem: common proxy api
* Filesystem: renamed to Storage. Work has begun on a glue layer. Added functions for reentrance.
* Storage: sd mount and sd file open
* Storage: sd file close
* Storage: temporary test app
* Storage: free filedata on close
* Storage: sd file read and write
* Storage: added internal storage (LittleFS)
* Storage: renamed internal commands
* Storage: seek, tell, truncate, size, sync, eof
* Storage: error descriptions
* Storage: directory management api (open, close, read, rewind)
* Storage: common management api (stat, fs_stat, remove, rename, mkdir)
* Dolphin app and Notifications app now use raw storage.
* Storage: storage statuses renamed. Implemented sd card icon.
* Storage: added raw sd-card api.
* Storage settings: work started
* Assets: use new icons approach
* Storage settings: working storage settings
* Storage: completely redesigned api, no longer sticking out FS_Api
* Storage: more simplified api, getting error_id from file is hidden from user, pointer to api is hidden inside file
* Storage: cli info and format commands
* Storage-cli: file list
* Storage: a simpler and more reliable api
* FatFS: slightly lighter and faster config. Also disabled reentrancy and file locking functions. They moved to a storage service.
* Storage-cli: accommodate to the new cli api.
* Storage: filesystem api is separated into internal and common api.
* Cli: added the ability to print the list of free heap blocks
* Storage: uses a list instead of an array to store the StorageFile. Rewrote api calls to use semaphores instead of thread flags.
* Storage settings: added the ability to benchmark the SD card.
* Gui module file select: uses new storage api
* Apps: removed deprecated sd_card_test application
* Args lib: support for enquoted arguments
* Dialogs: a new gui app for simple non-asynchronous apps
* Dialogs: view holder for easy single view work
* File worker: use new storage api
* IButton and lfrrfid apps: save keys to any storage
* Apps: fix ibutton and lfrfid stack, remove sd_card_test.
* SD filesystem: app removed
* File worker: fixed api pointer type
* Subghz: loading assets using the new storage api
* NFC: use the new storage api
* Dialogs: the better api for the message element
* Archive: use new storage api
* Irda: changed assest path, changed app path
* FileWorker: removed unused file_buf_cnt
* Storage: copying and renaming files now works between storages
* Storage cli: read, copy, remove, rename commands
* Archive: removed commented code
* Storage cli: write command
* Applications: add SRV_STORAGE and SRV_DIALOGS
* Internal-storage: removed
* Storage: improved api
* Storage app: changed api pointer from StorageApp to Storage
* Storage: better file_id handling
* Storage: more consistent errors
* Loader: support for NULL icons
* Storage: do nothing with the lfs file or directory if it is not open
* Storage: fix typo
* Storage: minor float usage cleanup, rename some symbols.
* Storage: compact doxygen comments.
Co-authored-by: あく <alleteam@gmail.com>
2021-07-23 12:20:19 +00:00
|
|
|
|
2021-09-28 13:10:13 +00:00
|
|
|
|
[FL-1191][FL-1524] Filesystem rework (#568)
* FS-Api: removed datetime manipulation functions and most of the file flags
* Filesystem: common proxy api
* Filesystem: renamed to Storage. Work has begun on a glue layer. Added functions for reentrance.
* Storage: sd mount and sd file open
* Storage: sd file close
* Storage: temporary test app
* Storage: free filedata on close
* Storage: sd file read and write
* Storage: added internal storage (LittleFS)
* Storage: renamed internal commands
* Storage: seek, tell, truncate, size, sync, eof
* Storage: error descriptions
* Storage: directory management api (open, close, read, rewind)
* Storage: common management api (stat, fs_stat, remove, rename, mkdir)
* Dolphin app and Notifications app now use raw storage.
* Storage: storage statuses renamed. Implemented sd card icon.
* Storage: added raw sd-card api.
* Storage settings: work started
* Assets: use new icons approach
* Storage settings: working storage settings
* Storage: completely redesigned api, no longer sticking out FS_Api
* Storage: more simplified api, getting error_id from file is hidden from user, pointer to api is hidden inside file
* Storage: cli info and format commands
* Storage-cli: file list
* Storage: a simpler and more reliable api
* FatFS: slightly lighter and faster config. Also disabled reentrancy and file locking functions. They moved to a storage service.
* Storage-cli: accommodate to the new cli api.
* Storage: filesystem api is separated into internal and common api.
* Cli: added the ability to print the list of free heap blocks
* Storage: uses a list instead of an array to store the StorageFile. Rewrote api calls to use semaphores instead of thread flags.
* Storage settings: added the ability to benchmark the SD card.
* Gui module file select: uses new storage api
* Apps: removed deprecated sd_card_test application
* Args lib: support for enquoted arguments
* Dialogs: a new gui app for simple non-asynchronous apps
* Dialogs: view holder for easy single view work
* File worker: use new storage api
* IButton and lfrrfid apps: save keys to any storage
* Apps: fix ibutton and lfrfid stack, remove sd_card_test.
* SD filesystem: app removed
* File worker: fixed api pointer type
* Subghz: loading assets using the new storage api
* NFC: use the new storage api
* Dialogs: the better api for the message element
* Archive: use new storage api
* Irda: changed assest path, changed app path
* FileWorker: removed unused file_buf_cnt
* Storage: copying and renaming files now works between storages
* Storage cli: read, copy, remove, rename commands
* Archive: removed commented code
* Storage cli: write command
* Applications: add SRV_STORAGE and SRV_DIALOGS
* Internal-storage: removed
* Storage: improved api
* Storage app: changed api pointer from StorageApp to Storage
* Storage: better file_id handling
* Storage: more consistent errors
* Loader: support for NULL icons
* Storage: do nothing with the lfs file or directory if it is not open
* Storage: fix typo
* Storage: minor float usage cleanup, rename some symbols.
* Storage: compact doxygen comments.
Co-authored-by: あく <alleteam@gmail.com>
2021-07-23 12:20:19 +00:00
|
|
|
SRV_STORAGE ?= 0
|
|
|
|
ifeq ($(SRV_STORAGE), 1)
|
|
|
|
CFLAGS += -DSRV_STORAGE
|
|
|
|
endif
|