2020-10-07 09:37:43 +00:00
|
|
|
APP_DIR = $(PROJECT_ROOT)/applications
|
|
|
|
LIB_DIR = $(PROJECT_ROOT)/lib
|
|
|
|
|
|
|
|
CFLAGS += -I$(APP_DIR)
|
[FL-140] Core api dynamic records (#296)
* SYSTEM: tickless mode with deep sleep.
* Move FreeRTOS ticks to lptim2
* API: move all sumbodules init routines to one place. Timebase: working lptim2 at tick source.
* API Timebase: lp-timer routines, timer access safe zones prediction and synchronization. FreeRTOS: adjust configuration for tickless mode.
* NFC: support for tickless mode.
* API Timebase: improve tick error handling in IRQ. Apploader: use insomnia mode to run applications.
* BLE: prevent sleep while core2 starting
* HAL: nap while in insomnia mode
* init records work
* try to implement record delete
* tests and flapp
* flapp subsystem
* new core functions to get app stat, simplify core code
* fix thread termination
* add strdup to core
* fix tests
* Refactoring: remove all unusued parts, update API usage, aggreagate API sources and headers, new record storage
* Refactoring: update furi record api usage, cleanup code
* Fix broken merge for freertos apps
* Core, Target: fix compilation warnings
* Drop firmware target local
* HAL Timebase, Power, Clock: semaphore guarded access to clock and power modes, better sleep mode.
* SD-Filesystem: wait for all deps to arrive before adding widget. Core, BLE: disable debug dump to serial.
* delete old app example-ipc
* delete old app fatfs list
* fix strobe app, add input header
* delete old display driver
* comment old app qr-code
* fix sd-card test, add forced widget update
* remove unused new core test
* increase heap to 128k
* comment and assert old core tests
* fix syntax
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2021-01-20 16:09:26 +00:00
|
|
|
C_SOURCES += $(APP_DIR)/applications.c
|
2020-10-07 09:37:43 +00:00
|
|
|
|
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-29 07:11:16 +00:00
|
|
|
APP_POWER = 1
|
2020-12-10 14:25:20 +00:00
|
|
|
APP_BT = 1
|
2020-11-16 10:16:34 +00:00
|
|
|
APP_CLI = 1
|
2021-01-11 14:52:35 +00:00
|
|
|
APP_SD_FILESYSTEM = 1
|
2020-10-23 09:39:11 +00:00
|
|
|
BUILD_IRDA = 1
|
2021-04-13 18:06:25 +00:00
|
|
|
BUILD_DOLPHIN_SCENE = 1
|
2020-12-18 20:15:29 +00:00
|
|
|
APP_DOLPHIN = 1
|
2020-10-20 05:45:38 +00:00
|
|
|
BUILD_EXAMPLE_BLINK = 1
|
|
|
|
BUILD_EXAMPLE_UART_WRITE = 1
|
|
|
|
BUILD_EXAMPLE_INPUT_DUMP = 1
|
2021-03-31 17:52:26 +00:00
|
|
|
BUILD_SUBGHZ = 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
|
2020-11-12 19:26:49 +00:00
|
|
|
BUILD_VIBRO_DEMO = 1
|
2020-11-14 16:24:38 +00:00
|
|
|
BUILD_SD_TEST = 1
|
2020-11-14 10:08:07 +00:00
|
|
|
BUILD_GPIO_DEMO = 1
|
2020-11-16 17:12:05 +00:00
|
|
|
BUILD_MUSIC_PLAYER = 1
|
2020-11-18 08:01:51 +00:00
|
|
|
BUILD_FLOOPPER_BLOOPPER = 1
|
2020-11-16 21:10:58 +00:00
|
|
|
BUILD_IBUTTON = 1
|
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
|
|
|
BUILD_GUI_TEST = 1
|
2021-03-10 12:38:01 +00:00
|
|
|
BUILD_KEYPAD_TEST = 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
|
|
|
|
|
2020-12-18 20:15:29 +00:00
|
|
|
APP_DOLPHIN ?= 0
|
|
|
|
ifeq ($(APP_DOLPHIN), 1)
|
2020-10-26 17:00:17 +00:00
|
|
|
APP_MENU = 1
|
2020-12-18 20:15:29 +00:00
|
|
|
CFLAGS += -DAPP_DOLPHIN
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/dolphin/*.c)
|
2020-10-26 17:00:17 +00:00
|
|
|
endif
|
|
|
|
|
2020-10-29 07:11:16 +00:00
|
|
|
APP_POWER ?= 0
|
|
|
|
ifeq ($(APP_POWER), 1)
|
|
|
|
APP_GUI = 1
|
2020-12-10 14:25:20 +00:00
|
|
|
APP_CLI = 1
|
2020-10-29 07:11:16 +00:00
|
|
|
CFLAGS += -DAPP_POWER
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/power/*.c)
|
|
|
|
endif
|
|
|
|
|
2020-12-10 14:25:20 +00:00
|
|
|
APP_BT ?= 0
|
|
|
|
ifeq ($(APP_BT), 1)
|
|
|
|
APP_CLI = 1
|
|
|
|
CFLAGS += -DAPP_BT
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/bt/*.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/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-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
|
2020-11-07 09:24:40 +00:00
|
|
|
APP_INPUT = 1
|
2020-10-07 09:37:43 +00:00
|
|
|
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
|
|
|
|
endif
|
|
|
|
|
2021-03-31 17:52:26 +00:00
|
|
|
ifeq ($(BUILD_SUBGHZ), 1)
|
|
|
|
CFLAGS += -DBUILD_SUBGHZ
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/subghz/*.c)
|
2020-10-19 06:22:38 +00:00
|
|
|
APP_INPUT = 1
|
|
|
|
APP_GUI = 1
|
2020-12-01 18:47:46 +00:00
|
|
|
APP_CLI = 1
|
2020-10-19 06:22:38 +00:00
|
|
|
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)
|
2021-01-07 16:28:35 +00:00
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/irda/*/*.c)
|
2020-10-23 09:39:11 +00:00
|
|
|
APP_INPUT = 1
|
|
|
|
APP_GUI = 1
|
|
|
|
endif
|
|
|
|
|
2020-11-14 16:24:38 +00:00
|
|
|
APP_SD_TEST ?= 0
|
|
|
|
ifeq ($(APP_SD_TEST), 1)
|
|
|
|
CFLAGS += -DAPP_SD_TEST
|
|
|
|
BUILD_SD_TEST = 1
|
|
|
|
endif
|
|
|
|
BUILD_SD_TEST ?= 0
|
|
|
|
ifeq ($(BUILD_SD_TEST), 1)
|
|
|
|
CFLAGS += -DBUILD_SD_TEST
|
|
|
|
CPP_SOURCES += $(wildcard $(APP_DIR)/sd-card-test/*.cpp)
|
|
|
|
APP_INPUT = 1
|
|
|
|
APP_GUI = 1
|
2021-01-11 14:52:35 +00:00
|
|
|
APP_SD_FILESYSTEM = 1
|
2020-11-14 16:24:38 +00:00
|
|
|
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-11-12 19:26:49 +00:00
|
|
|
BUILD_VIBRO_DEMO ?= 0
|
|
|
|
ifeq ($(BUILD_VIBRO_DEMO), 1)
|
|
|
|
CFLAGS += -DBUILD_VIBRO_DEMO
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/examples/vibro.c)
|
|
|
|
APP_INPUT = 1
|
|
|
|
endif
|
|
|
|
|
2021-03-10 12:38:01 +00:00
|
|
|
APP_KEYPAD_TEST ?= 0
|
|
|
|
ifeq ($(APP_KEYPAD_TEST), 1)
|
|
|
|
CFLAGS += -DAPP_KEYPAD_TEST
|
|
|
|
BUILD_KEYPAD_TEST = 1
|
|
|
|
endif
|
|
|
|
BUILD_KEYPAD_TEST ?= 0
|
|
|
|
ifeq ($(BUILD_KEYPAD_TEST), 1)
|
|
|
|
CFLAGS += -DBUILD_KEYPAD_TEST
|
|
|
|
C_SOURCES += $(APP_DIR)/examples/keypad_test.c
|
|
|
|
BUILD_KEYPAD_TEST = 1
|
|
|
|
endif
|
|
|
|
|
2020-11-14 10:08:07 +00:00
|
|
|
APP_GPIO_DEMO ?= 0
|
|
|
|
ifeq ($(APP_GPIO_DEMO), 1)
|
|
|
|
CFLAGS += -DAPP_GPIO_DEMO
|
|
|
|
BUILD_GPIO_DEMO = 1
|
|
|
|
endif
|
|
|
|
BUILD_GPIO_DEMO ?= 0
|
|
|
|
ifeq ($(BUILD_GPIO_DEMO), 1)
|
|
|
|
CFLAGS += -DBUILD_GPIO_DEMO
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/gpio-tester/*.c)
|
|
|
|
endif
|
|
|
|
|
2020-11-16 17:12:05 +00:00
|
|
|
APP_MUSIC_PLAYER ?= 0
|
|
|
|
ifeq ($(APP_MUSIC_PLAYER), 1)
|
|
|
|
CFLAGS += -DAPP_MUSIC_PLAYER
|
|
|
|
BUILD_MUSIC_PLAYER = 1
|
|
|
|
endif
|
|
|
|
BUILD_MUSIC_PLAYER ?= 0
|
|
|
|
ifeq ($(BUILD_MUSIC_PLAYER), 1)
|
|
|
|
CFLAGS += -DBUILD_MUSIC_PLAYER
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/music-player/*.c)
|
|
|
|
endif
|
|
|
|
|
2020-11-18 08:01:51 +00:00
|
|
|
APP_FLOOPPER_BLOOPPER ?= 0
|
|
|
|
ifeq ($(APP_FLOOPPER_BLOOPPER), 1)
|
|
|
|
CFLAGS += -DAPP_FLOOPPER_BLOOPPER
|
|
|
|
BUILD_FLOOPPER_BLOOPPER = 1
|
|
|
|
endif
|
|
|
|
BUILD_FLOOPPER_BLOOPPER ?= 0
|
|
|
|
ifeq ($(BUILD_FLOOPPER_BLOOPPER), 1)
|
|
|
|
CFLAGS += -DBUILD_FLOOPPER_BLOOPPER
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/floopper-bloopper/*.c)
|
|
|
|
endif
|
|
|
|
|
2021-04-13 18:06:25 +00:00
|
|
|
APP_DOLPHIN_SCENE ?= 0
|
|
|
|
ifeq ($(APP_DOLPHIN_SCENE), 1)
|
|
|
|
CFLAGS += -DAPP_DOLPHIN_SCENE
|
|
|
|
BUILD_DOLPHIN_SCENE = 1
|
|
|
|
endif
|
|
|
|
BUILD_DOLPHIN_SCENE ?= 0
|
|
|
|
ifeq ($(BUILD_DOLPHIN_SCENE), 1)
|
|
|
|
CFLAGS += -DBUILD_DOLPHIN_SCENE
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/dolphin_scene/*.c)
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/passport/*.c)
|
|
|
|
endif
|
|
|
|
|
2020-11-16 21:10:58 +00:00
|
|
|
APP_IBUTTON ?= 0
|
|
|
|
ifeq ($(APP_IBUTTON), 1)
|
|
|
|
CFLAGS += -DAPP_IBUTTON
|
|
|
|
BUILD_IBUTTON = 1
|
|
|
|
endif
|
|
|
|
BUILD_IBUTTON ?= 0
|
|
|
|
ifeq ($(BUILD_IBUTTON), 1)
|
|
|
|
CFLAGS += -DBUILD_IBUTTON
|
2021-01-28 12:30:31 +00:00
|
|
|
CPP_SOURCES += $(wildcard $(APP_DIR)/ibutton/*.cpp)
|
new iButton app (#328)
* rename old ibutton app to ibutton-test
* more renames
* updated onewire library compilation condition
* add submenu_clean subroutine
* add index for submenu callback
* c++ guard for gui modules
* add released ibutton app
* fix the position of the submenu window if there are too few items
* iButton app basis
* negative icon position info
* fix submenu_clean subroutine
* add ibutton app to applications makefile
* add onewire key read routine to read mode
* rename mode to scene
* rename files and folder (mode to scene)
* rename ibutton view to view manager
* rename get_view to get_view_manager
* cpp guards
* key read, store and notify features
* syntax fix
* make iButtonScene functions pure virtual
* fix syntax
* add text store, add new scene (crc error)
* not a key scene
* syntax fix
* read success scene
* app, switching to the previous scene with the number of scenes to be skipped
* scene whith menu when key is readed
* fix font height calculation, fix offsets
* add key write scene
* view_dispatcher_remove_view subroutine
* generic pause/resume os methods
* fix furi_assert usage
* key store, worker
* fix pointer comparsion
* saved keys, saved key action scenes
* key delete/confirm delete scenes and routines
* use last input subsystem changes
* fix syntax
* fix new model usage in submenu
* fix includes
* use vibro pin
* use stored key name if valid
* emulate scene
* random name generator
* name and save readed key scenes, new icon
* fix icon position
* fix text scene exit
* fix naming, fix text placement, new info scene
* state-driven cyfral decoder
* better cyfral decoder
* better cyfral decoder
* one wire: search command set
* metakom decoder
* more key types
* add next scene to error scenes
* universal key reader
* use new key reader
* syntax fix
* warning fix
* byte input module template
* new thread and insomnia api usage
* New element: slightly rounded frame
* Use elements_slightly_rounded_frame in text input
* Gui test app: byte input usage
* Byte input module: data drawing and selection
* Byte input: comment currently unused fns
* remove volatile qualifier
* base byte input realisation
* App gui test: remove internal fns visibility
* Byne input, final version
* test install gcc-arm-none-eabi-10-2020-q4-major
* test install gcc-arm-none-eabi-10-2020-q4-major
* App iButton: byte input view managment
* App iButton: add key manually scenes
* App iButton: rename scenes, add popup timeout
* App iButton: use new scenes, new fn for rollback to specific prevous scene.
* App iButton: remove byte input view on app exit
* App iButton: edit key scene
* Module byte input: reduce swintch value to uint8_t
* Module byte input: switch from switch-case to if, unfortunately we need compile-time constants to use with switch
* Icons: new small arrows
* Module byte input: new arrangement of elements
* OneWire slave lib: fix deattach sequence
* App iButton: pulse sequencer
* App iButton: add more keys to store
* App iButton: split key worker to separate read/write/emulate entitys
* App iButton: use new read/emulate entities
* fix callback pointer saving
* App iButton: use KeyReader error enum instead of KeyWorker error list handling
* App iButton: do not use insomnia fns in pulse sequencer
* App iButton: use KeyReader error enum in read scene
* OneWire slave lib: more READ ROM command variants, call callback only if positive result
* GPIO resources: add external gpio
* App SD/NFC: removed application
* App iButton-test: update to new light api
* App iButton: update to new light-api
* Outdated apps: add api-light-usage
* Gpio: update SD card CS pin settings
* API-power: added fns to disable/enable external 3v3 dc-dc
* API-gpio: separated SD card detect routines
* Resources: removed sd cs pin
* SD card: low level init now resets card power supply
* App SD-filesystem: use new card detect fns
* SD card: fix low level init headers
* SD card: more realilable low level init, power reset, exit from command read cycle conditionally
* App SD-filesystem: led notifiers, init cycling
* SD card: backport to F4
* Api PWM: add c++ guards
* App iButton: yellow blink in emulate scene, vibro on
* App iButton: one wire keys command set
* App iButton: successful write scene
* App iButton: key writer
* App iButton: syntax fix
* App iButton: notify write success
* App iButton: fix double scene change
* SD card: handle eject in init sequence
* SD card: api to set level on detect gpio
* SPI: api to set state on bus pins
* SD card: set low state on bus pins while power reset
* File select: init
* File select: fix input consuming
* SD Card: fixed dir open api error
* SD-card: replace strncpy by strlcpy. Fix buffer overflow error.
* API HAL OS: replace CMP based ticks with ARR based one, hard reset lptimer on reconfiguration.
* GUI: More stack size for (temporary, wee need to implement sd card api in separate thread)
* GUI: File select module.
* App iButton-test: remove obsolete app
Co-authored-by: rusdacent <rusdacentx0x08@gmail.com>
Co-authored-by: coreglitch <mail@s3f.ru>
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2021-03-12 12:45:18 +00:00
|
|
|
CPP_SOURCES += $(wildcard $(APP_DIR)/ibutton/*/*.cpp)
|
2020-11-16 21:10:58 +00:00
|
|
|
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
|
|
|
|
BUILD_GUI_TEST = 1
|
|
|
|
endif
|
|
|
|
BUILD_GUI_TEST ?= 0
|
|
|
|
ifeq ($(BUILD_GUI_TEST), 1)
|
|
|
|
CFLAGS += -DBUILD_GUI_TEST
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/gui-test/*.c)
|
|
|
|
endif
|
|
|
|
|
2020-11-18 13:01:25 +00:00
|
|
|
APP_SDNFC ?= 0
|
|
|
|
ifeq ($(APP_SDNFC), 1)
|
|
|
|
CFLAGS += -DAPP_SDNFC
|
|
|
|
BUILD_SDNFC = 1
|
|
|
|
endif
|
|
|
|
BUILD_SDNFC ?= 0
|
|
|
|
ifeq ($(BUILD_SDNFC), 1)
|
|
|
|
CFLAGS += -DBUILD_SDNFC
|
|
|
|
CPP_SOURCES += $(APP_DIR)/sdnfc/sdnfc.cpp
|
|
|
|
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)
|
2021-01-20 16:51:01 +00:00
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/gui/modules/*.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
|
|
|
|
2021-01-11 14:52:35 +00:00
|
|
|
APP_SD_FILESYSTEM ?= 0
|
|
|
|
ifeq ($(APP_SD_FILESYSTEM), 1)
|
|
|
|
CFLAGS += -DAPP_SD_FILESYSTEM
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/sd-filesystem/*.c)
|
|
|
|
endif
|
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
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
|
2020-12-01 18:47:46 +00:00
|
|
|
|
|
|
|
APP_CLI ?= 0
|
|
|
|
ifeq ($(APP_CLI), 1)
|
|
|
|
APP_GUI = 1
|
|
|
|
CFLAGS += -DAPP_CLI
|
|
|
|
C_SOURCES += $(wildcard $(APP_DIR)/cli/*.c)
|
|
|
|
endif
|