ad421a81bc
* 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>
303 lines
5.1 KiB
Makefile
303 lines
5.1 KiB
Makefile
APP_DIR = $(PROJECT_ROOT)/applications
|
|
LIB_DIR = $(PROJECT_ROOT)/lib
|
|
|
|
CFLAGS += -I$(APP_DIR)
|
|
C_SOURCES += $(shell find $(APP_DIR) -name *.c)
|
|
CPP_SOURCES += $(shell find $(APP_DIR) -name *.cpp)
|
|
|
|
|
|
# Use SRV_* for autostart app
|
|
# Use APP_* for add app to build
|
|
|
|
APP_RELEASE ?= 1
|
|
ifeq ($(APP_RELEASE), 1)
|
|
# Main services
|
|
SRV_MENU = 1
|
|
SRV_POWER = 1
|
|
SRV_BT = 1
|
|
SRV_CLI = 1
|
|
SRV_DOLPHIN = 1
|
|
SRV_NOTIFICATION = 1
|
|
SRV_STORAGE = 1
|
|
SRV_DIALOGS = 1
|
|
|
|
# Main Apps
|
|
APP_IRDA = 1
|
|
APP_SUBGHZ = 1
|
|
APP_LF_RFID = 1
|
|
APP_NFC = 1
|
|
APP_GPIO_DEMO = 1
|
|
APP_MUSIC_PLAYER = 1
|
|
APP_IBUTTON = 1
|
|
APP_ARCHIVE = 1
|
|
|
|
# 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
|
|
APP_UNIT_TESTS = 0
|
|
APP_IRDA_MONITOR = 1
|
|
APP_VERTICAL_SCREEN = 1
|
|
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
|
|
APP_MENU = 1
|
|
endif
|
|
APP_MENU ?= 0
|
|
ifeq ($(APP_MENU), 1)
|
|
SRV_INPUT = 1
|
|
SRV_GUI = 1
|
|
CFLAGS += -DAPP_MENU
|
|
endif
|
|
|
|
APP_VERTICAL_SCREEN ?= 0
|
|
ifeq ($(APP_VERTICAL_SCREEN), 1)
|
|
CFLAGS += -DAPP_VERTICAL_SCREEN
|
|
endif
|
|
|
|
APP_IRDA_MONITOR ?= 0
|
|
ifeq ($(APP_IRDA_MONITOR), 1)
|
|
CFLAGS += -DAPP_IRDA_MONITOR
|
|
endif
|
|
|
|
APP_UNIT_TESTS ?= 0
|
|
ifeq ($(APP_UNIT_TESTS), 1)
|
|
CFLAGS += -DAPP_UNIT_TESTS
|
|
endif
|
|
|
|
APP_ARCHIVE ?= 0
|
|
ifeq ($(APP_NFC), 1)
|
|
CFLAGS += -DAPP_ARCHIVE
|
|
APP_ARCHIVE = 1
|
|
endif
|
|
|
|
SRV_EXAMPLE_BLINK ?= 0
|
|
ifeq ($(SRV_EXAMPLE_BLINK), 1)
|
|
CFLAGS += -DSRV_EXAMPLE_BLINK
|
|
APP_EXAMPLE_BLINK = 1
|
|
endif
|
|
APP_EXAMPLE_BLINK ?= 0
|
|
ifeq ($(APP_EXAMPLE_BLINK), 1)
|
|
CFLAGS += -DAPP_EXAMPLE_BLINK
|
|
SRV_INPUT = 1
|
|
endif
|
|
|
|
SRV_EXAMPLE_UART_WRITE ?= 0
|
|
ifeq ($(SRV_EXAMPLE_UART_WRITE), 1)
|
|
CFLAGS += -DSRV_EXAMPLE_UART_WRITE
|
|
APP_EXAMPLE_UART_WRITE = 1
|
|
endif
|
|
APP_EXAMPLE_UART_WRITE ?= 0
|
|
ifeq ($(APP_EXAMPLE_UART_WRITE), 1)
|
|
CFLAGS += -DAPP_EXAMPLE_UART_WRITE
|
|
endif
|
|
|
|
SRV_EXAMPLE_IPC ?= 0
|
|
ifeq ($(SRV_EXAMPLE_IPC), 1)
|
|
CFLAGS += -DSRV_EXAMPLE_IPC
|
|
APP_EXAMPLE_IPC = 1
|
|
endif
|
|
APP_EXAMPLE_IPC ?= 0
|
|
ifeq ($(APP_EXAMPLE_IPC), 1)
|
|
CFLAGS += -DAPP_EXAMPLE_IPC
|
|
endif
|
|
|
|
SRV_EXAMPLE_INPUT_DUMP ?= 0
|
|
ifeq ($(SRV_EXAMPLE_INPUT_DUMP), 1)
|
|
CFLAGS += -DSRV_EXAMPLE_INPUT_DUMP
|
|
APP_EXAMPLE_INPUT_DUMP = 1
|
|
endif
|
|
APP_EXAMPLE_INPUT_DUMP ?= 0
|
|
ifeq ($(APP_EXAMPLE_INPUT_DUMP), 1)
|
|
CFLAGS += -DAPP_EXAMPLE_INPUT_DUMP
|
|
SRV_INPUT = 1
|
|
endif
|
|
|
|
SRV_EXAMPLE_QRCODE ?= 0
|
|
ifeq ($(SRV_EXAMPLE_QRCODE), 1)
|
|
CFLAGS += -DSRV_EXAMPLE_QRCODE
|
|
APP_EXAMPLE_QRCODE = 1
|
|
endif
|
|
APP_EXAMPLE_QRCODE ?= 0
|
|
ifeq ($(APP_EXAMPLE_QRCODE), 1)
|
|
CFLAGS += -DAPP_EXAMPLE_QRCODE
|
|
endif
|
|
|
|
ifeq ($(APP_SUBGHZ), 1)
|
|
CFLAGS += -DAPP_SUBGHZ
|
|
SRV_INPUT = 1
|
|
SRV_GUI = 1
|
|
SRV_CLI = 1
|
|
endif
|
|
|
|
SRV_LF_RFID ?= 0
|
|
ifeq ($(SRV_LF_RFID), 1)
|
|
CFLAGS += -DSRV_LF_RFID
|
|
APP_LF_RFID = 1
|
|
endif
|
|
APP_LF_RFID ?= 0
|
|
ifeq ($(APP_LF_RFID), 1)
|
|
CFLAGS += -DAPP_LF_RFID
|
|
SRV_INPUT = 1
|
|
SRV_GUI = 1
|
|
endif
|
|
|
|
APP_NFC ?= 0
|
|
ifeq ($(APP_NFC), 1)
|
|
CFLAGS += -DAPP_NFC
|
|
SRV_MENU = 1
|
|
SRV_INPUT = 1
|
|
SRV_GUI = 1
|
|
endif
|
|
|
|
SRV_IRDA ?= 0
|
|
ifeq ($(SRV_IRDA), 1)
|
|
CFLAGS += -DSRV_IRDA
|
|
APP_IRDA = 1
|
|
endif
|
|
APP_IRDA ?= 0
|
|
ifeq ($(APP_IRDA), 1)
|
|
CFLAGS += -DAPP_IRDA
|
|
SRV_INPUT = 1
|
|
SRV_GUI = 1
|
|
endif
|
|
|
|
SRV_SPEAKER_DEMO ?= 0
|
|
ifeq ($(SRV_SPEAKER_DEMO), 1)
|
|
CFLAGS += -DSRV_SPEAKER_DEMO
|
|
APP_SPEAKER_DEMO = 1
|
|
endif
|
|
APP_SPEAKER_DEMO ?= 0
|
|
ifeq ($(APP_SPEAKER_DEMO), 1)
|
|
CFLAGS += -DAPP_SPEAKER_DEMO
|
|
SRV_INPUT = 1
|
|
SRV_GUI = 1
|
|
endif
|
|
|
|
APP_VIBRO_DEMO ?= 0
|
|
ifeq ($(APP_VIBRO_DEMO), 1)
|
|
CFLAGS += -DAPP_VIBRO_DEMO
|
|
SRV_INPUT = 1
|
|
endif
|
|
|
|
SRV_KEYPAD_TEST ?= 0
|
|
ifeq ($(SRV_KEYPAD_TEST), 1)
|
|
CFLAGS += -DSRV_KEYPAD_TEST
|
|
APP_KEYPAD_TEST = 1
|
|
endif
|
|
APP_KEYPAD_TEST ?= 0
|
|
ifeq ($(APP_KEYPAD_TEST), 1)
|
|
CFLAGS += -DAPP_KEYPAD_TEST
|
|
APP_KEYPAD_TEST = 1
|
|
endif
|
|
|
|
SRV_ACCESSOR ?= 0
|
|
ifeq ($(SRV_ACCESSOR), 1)
|
|
CFLAGS += -DSRV_ACCESSOR
|
|
APP_ACCESSOR = 1
|
|
endif
|
|
APP_ACCESSOR ?= 0
|
|
ifeq ($(APP_ACCESSOR), 1)
|
|
CFLAGS += -DAPP_ACCESSOR
|
|
APP_ACCESSOR = 1
|
|
endif
|
|
|
|
SRV_GPIO_DEMO ?= 0
|
|
ifeq ($(SRV_GPIO_DEMO), 1)
|
|
CFLAGS += -DSRV_GPIO_DEMO
|
|
APP_GPIO_DEMO = 1
|
|
endif
|
|
APP_GPIO_DEMO ?= 0
|
|
ifeq ($(APP_GPIO_DEMO), 1)
|
|
CFLAGS += -DAPP_GPIO_DEMO
|
|
endif
|
|
|
|
SRV_MUSIC_PLAYER ?= 0
|
|
ifeq ($(SRV_MUSIC_PLAYER), 1)
|
|
CFLAGS += -DSRV_MUSIC_PLAYER
|
|
APP_MUSIC_PLAYER = 1
|
|
endif
|
|
APP_MUSIC_PLAYER ?= 0
|
|
ifeq ($(APP_MUSIC_PLAYER), 1)
|
|
CFLAGS += -DAPP_MUSIC_PLAYER
|
|
endif
|
|
|
|
SRV_IBUTTON ?= 0
|
|
ifeq ($(SRV_IBUTTON), 1)
|
|
CFLAGS += -DSRV_IBUTTON
|
|
APP_IBUTTON = 1
|
|
endif
|
|
APP_IBUTTON ?= 0
|
|
ifeq ($(APP_IBUTTON), 1)
|
|
CFLAGS += -DAPP_IBUTTON
|
|
endif
|
|
|
|
SRV_GUI_TEST ?= 0
|
|
ifeq ($(SRV_GUI_TEST), 1)
|
|
CFLAGS += -DSRV_GUI_TEST
|
|
APP_GUI_TEST = 1
|
|
endif
|
|
APP_GUI_TEST ?= 0
|
|
ifeq ($(APP_GUI_TEST), 1)
|
|
CFLAGS += -DAPP_GUI_TEST
|
|
endif
|
|
|
|
# device drivers
|
|
|
|
SRV_GUI ?= 0
|
|
ifeq ($(SRV_GUI), 1)
|
|
CFLAGS += -DSRV_GUI
|
|
endif
|
|
|
|
SRV_INPUT ?= 0
|
|
ifeq ($(SRV_INPUT), 1)
|
|
CFLAGS += -DSRV_INPUT
|
|
endif
|
|
|
|
SRV_CLI ?= 0
|
|
ifeq ($(SRV_CLI), 1)
|
|
SRV_GUI = 1
|
|
CFLAGS += -DSRV_CLI
|
|
endif
|
|
|
|
SRV_NOTIFICATION ?= 0
|
|
ifeq ($(SRV_NOTIFICATION), 1)
|
|
CFLAGS += -DSRV_NOTIFICATION
|
|
endif
|
|
|
|
SRV_STORAGE ?= 0
|
|
ifeq ($(SRV_STORAGE), 1)
|
|
CFLAGS += -DSRV_STORAGE
|
|
endif
|
|
|
|
SRV_DIALOGS ?= 0
|
|
ifeq ($(SRV_DIALOGS), 1)
|
|
CFLAGS += -DSRV_DIALOGS
|
|
endif |