2020-08-24 15:31:22 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-10-13 08:22:43 +00:00
|
|
|
#include "flipper.h"
|
2020-08-24 15:31:22 +00:00
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
#ifdef APP_TEST
|
2020-08-26 01:56:33 +00:00
|
|
|
void flipper_test_app(void* p);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void application_blink(void* p);
|
2020-08-26 18:32:22 +00:00
|
|
|
void application_uart_write(void* p);
|
2020-09-01 10:34:23 +00:00
|
|
|
void application_ipc_display(void* p);
|
|
|
|
void application_ipc_widget(void* p);
|
2020-10-02 06:44:05 +00:00
|
|
|
void application_input_dump(void* p);
|
2020-08-26 01:56:33 +00:00
|
|
|
|
2020-09-09 16:12:09 +00:00
|
|
|
void display_u8g2(void* p);
|
|
|
|
|
|
|
|
void u8g2_example(void* p);
|
|
|
|
|
2020-10-02 06:44:05 +00:00
|
|
|
void input_task(void* p);
|
2020-10-07 09:37:43 +00:00
|
|
|
void menu_task(void* p);
|
2020-10-02 06:44:05 +00:00
|
|
|
|
2020-09-09 16:54:21 +00:00
|
|
|
void coreglitch_demo_0(void* p);
|
|
|
|
|
2020-10-05 10:33:35 +00:00
|
|
|
void u8g2_qrcode(void* p);
|
2020-10-08 14:37:19 +00:00
|
|
|
void fatfs_list(void* p);
|
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
|
|
|
void gui_task(void* p);
|
2020-10-15 16:15:53 +00:00
|
|
|
void backlight_control(void* p);
|
2020-10-23 09:39:11 +00:00
|
|
|
void irda(void* p);
|
2020-10-17 08:48:52 +00:00
|
|
|
void app_loader(void* p);
|
2020-10-19 06:22:38 +00:00
|
|
|
void cc1101_workaround(void* p);
|
2020-10-26 09:56:46 +00:00
|
|
|
void lf_rfid_workaround(void* p);
|
2020-10-18 22:09:48 +00:00
|
|
|
void nfc_task(void* p);
|
2020-12-18 20:15:29 +00:00
|
|
|
void dolphin_task(void* p);
|
2020-10-29 07:11:16 +00:00
|
|
|
void power_task(void* p);
|
2020-12-10 14:25:20 +00:00
|
|
|
void bt_task(void* p);
|
2020-11-14 16:24:38 +00:00
|
|
|
void sd_card_test(void* p);
|
2020-11-12 19:26:49 +00:00
|
|
|
void application_vibro(void* p);
|
2020-11-14 10:08:07 +00:00
|
|
|
void app_gpio_test(void* p);
|
2020-11-16 11:21:58 +00:00
|
|
|
void app_ibutton(void* p);
|
2020-11-16 10:16:34 +00:00
|
|
|
void cli_task(void* p);
|
2020-11-16 17:12:05 +00:00
|
|
|
void music_player(void* p);
|
2020-11-18 13:01:25 +00:00
|
|
|
void sdnfc(void* p);
|
2020-11-18 08:01:51 +00:00
|
|
|
void floopper_bloopper(void* p);
|
2020-10-05 10:33:35 +00:00
|
|
|
|
2020-08-24 15:31:22 +00:00
|
|
|
const FlipperStartupApp FLIPPER_STARTUP[] = {
|
2020-10-07 09:37:43 +00:00
|
|
|
#ifdef APP_DISPLAY
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = display_u8g2, .name = "display_u8g2", .libs = {0}, .icon = A_Plugins_14},
|
2020-09-29 23:18:30 +00:00
|
|
|
#endif
|
|
|
|
|
2020-11-16 10:16:34 +00:00
|
|
|
#ifdef APP_CLI
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = cli_task, .name = "cli_task", .libs = {0}, .icon = A_Plugins_14},
|
2020-11-16 10:16:34 +00:00
|
|
|
#endif
|
|
|
|
|
2020-10-26 07:16:54 +00:00
|
|
|
#ifdef APP_EXAMPLE_BLINK
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = application_blink,
|
|
|
|
.name = "blink",
|
|
|
|
.libs = {1, FURI_LIB{"input_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-10-26 07:16:54 +00:00
|
|
|
#endif
|
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
#ifdef APP_INPUT
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = input_task, .name = "input_task", .libs = {0}, .icon = A_Plugins_14},
|
2020-10-02 06:44:05 +00:00
|
|
|
#endif
|
|
|
|
|
2020-11-06 08:31:59 +00:00
|
|
|
#ifdef APP_EXAMPLE_INPUT_DUMP
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = application_input_dump,
|
|
|
|
.name = "input dump",
|
|
|
|
.libs = {1, FURI_LIB{"input_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-11-06 08:31:59 +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
|
|
|
#ifdef APP_GUI
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = backlight_control,
|
|
|
|
.name = "backlight_control",
|
|
|
|
.libs = {1, FURI_LIB{"input_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
|
|
|
{.app = gui_task, .name = "gui_task", .libs = {0}, .icon = A_Plugins_14},
|
2020-09-29 23:18:30 +00:00
|
|
|
#endif
|
2020-08-26 01:56:33 +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
|
|
|
#ifdef APP_MENU
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = menu_task,
|
|
|
|
.name = "menu_task",
|
|
|
|
.libs = {1, FURI_LIB{"gui_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
|
|
|
{.app = app_loader,
|
|
|
|
.name = "app_loader",
|
|
|
|
.libs = {2, FURI_LIB{"menu_task", "cli_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-09-29 23:18:30 +00:00
|
|
|
#endif
|
2020-10-26 17:00:17 +00:00
|
|
|
|
2020-12-18 20:15:29 +00:00
|
|
|
#ifdef APP_DOLPHIN
|
|
|
|
{.app = dolphin_task,
|
|
|
|
.name = "dolphin_task",
|
2020-11-18 09:39:10 +00:00
|
|
|
.libs = {1, FURI_LIB{"menu_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-10-26 17:00:17 +00:00
|
|
|
#endif
|
2020-10-29 07:11:16 +00:00
|
|
|
|
|
|
|
#ifdef APP_POWER
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = power_task,
|
|
|
|
.name = "power_task",
|
|
|
|
.libs = {2, FURI_LIB{"cli_task", "gui_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-10-29 07:11:16 +00:00
|
|
|
#endif
|
2020-10-07 09:37:43 +00:00
|
|
|
|
2020-12-10 14:25:20 +00:00
|
|
|
#ifdef APP_BT
|
|
|
|
{.app = bt_task, .name = "bt_task", .libs = {1, FURI_LIB{"cli_task"}}, .icon = A_Plugins_14},
|
|
|
|
#endif
|
|
|
|
|
2020-10-19 06:22:38 +00:00
|
|
|
#ifdef APP_CC1101
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = cc1101_workaround,
|
|
|
|
.name = "cc1101 workaround",
|
|
|
|
.libs = {1, FURI_LIB{"gui_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-10-19 06:22:38 +00:00
|
|
|
#endif
|
|
|
|
|
2020-10-26 09:56:46 +00:00
|
|
|
#ifdef APP_LF_RFID
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = lf_rfid_workaround,
|
|
|
|
.name = "lf rfid workaround",
|
|
|
|
.libs = {1, FURI_LIB{"gui_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-10-26 09:56:46 +00:00
|
|
|
#endif
|
|
|
|
|
2020-10-23 09:39:11 +00:00
|
|
|
#ifdef APP_IRDA
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = irda, .name = "irda", .libs = {1, FURI_LIB{"gui_task"}}, .icon = A_Plugins_14},
|
2020-10-23 09:39:11 +00:00
|
|
|
#endif
|
|
|
|
|
2020-10-18 22:09:48 +00:00
|
|
|
#ifdef APP_NFC
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = nfc_task, .name = "nfc_task", .libs = {1, FURI_LIB{"menu_task"}}, .icon = A_Plugins_14},
|
2020-10-18 22:09:48 +00:00
|
|
|
#endif
|
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
#ifdef APP_TEST
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = flipper_test_app, .name = "test app", .libs = {0}, .icon = A_Plugins_14},
|
2020-09-29 23:18:30 +00:00
|
|
|
#endif
|
2020-10-07 09:37:43 +00:00
|
|
|
|
|
|
|
#ifdef APP_EXAMPLE_IPC
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = application_ipc_display, .name = "ipc display", .libs = {0}, .icon = A_Plugins_14},
|
|
|
|
{.app = application_ipc_widget, .name = "ipc widget", .libs = {0}, .icon = A_Plugins_14},
|
2020-09-29 23:18:30 +00:00
|
|
|
#endif
|
2020-10-07 09:37:43 +00:00
|
|
|
|
|
|
|
#ifdef APP_EXAMPLE_QRCODE
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = u8g2_qrcode,
|
|
|
|
.name = "u8g2_qrcode",
|
|
|
|
.libs = {1, FURI_LIB{"display_u8g2"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-10-08 14:37:19 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef APP_EXAMPLE_FATFS
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = fatfs_list,
|
|
|
|
.name = "fatfs_list",
|
|
|
|
.libs = {2, FURI_LIB{"display_u8g2", "input_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-10-05 10:33:35 +00:00
|
|
|
#endif
|
2020-10-07 09:37:43 +00:00
|
|
|
|
|
|
|
#ifdef APP_EXAMPLE_DISPLAY
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = u8g2_example,
|
|
|
|
.name = "u8g2_example",
|
|
|
|
.libs = {1, FURI_LIB{"display_u8g2"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-10-07 09:37:43 +00:00
|
|
|
#endif
|
2020-10-26 07:16:54 +00:00
|
|
|
|
|
|
|
#ifdef APP_SPEAKER_DEMO
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = coreglitch_demo_0, .name = "coreglitch_demo_0", .libs = {0}, .icon = A_Plugins_14},
|
2020-10-26 07:16:54 +00:00
|
|
|
#endif
|
2020-11-14 10:08:07 +00:00
|
|
|
|
2020-11-14 16:24:38 +00:00
|
|
|
#ifdef APP_SD_TEST
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = sd_card_test,
|
|
|
|
.name = "sd_card_test",
|
|
|
|
.libs = {1, FURI_LIB{"gui_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-11-14 16:24:38 +00:00
|
|
|
#endif
|
|
|
|
|
2020-11-16 17:12:05 +00:00
|
|
|
#ifdef APP_MUSIC_PLAYER
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = music_player,
|
|
|
|
.name = "music player",
|
|
|
|
.libs = {1, FURI_LIB{"gui_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-11-16 17:12:05 +00:00
|
|
|
#endif
|
|
|
|
|
2020-11-16 11:21:58 +00:00
|
|
|
#ifdef APP_IBUTTON
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = app_ibutton,
|
|
|
|
.name = "ibutton",
|
|
|
|
.libs = {1, FURI_LIB{"gui_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-11-16 11:21:58 +00:00
|
|
|
#endif
|
2020-11-16 21:20:58 +00:00
|
|
|
|
|
|
|
#ifdef APP_GPIO_DEMO
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = app_gpio_test,
|
|
|
|
.name = "gpio test",
|
|
|
|
.libs = {1, FURI_LIB{"gui_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-11-16 21:20:58 +00:00
|
|
|
#endif
|
2020-11-18 08:01:51 +00:00
|
|
|
|
|
|
|
#ifdef APP_FLOOPPER_BLOOPPER
|
2020-11-18 13:01:25 +00:00
|
|
|
{.app = floopper_bloopper,
|
|
|
|
.name = "Floopper Bloopper",
|
|
|
|
.libs = {1, FURI_LIB{"gui_task"}},
|
|
|
|
.icon = A_Games_14},
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef APP_SDNFC
|
|
|
|
{.app = sdnfc, .name = "sdnfc", .libs = {1, FURI_LIB{"gui_task"}}, .icon = A_Plugins_14},
|
2020-11-18 08:01:51 +00:00
|
|
|
#endif
|
2020-11-16 21:20:58 +00:00
|
|
|
};
|
2020-10-20 05:45:38 +00:00
|
|
|
|
2020-11-18 09:39:10 +00:00
|
|
|
// Main menu APP
|
2020-10-20 05:45:38 +00:00
|
|
|
const FlipperStartupApp FLIPPER_APPS[] = {
|
2020-11-18 09:39:10 +00:00
|
|
|
#ifdef BUILD_CC1101
|
|
|
|
{.app = cc1101_workaround,
|
|
|
|
.name = "Sub-1 GHz",
|
|
|
|
.libs = {1, FURI_LIB{"gui_task"}},
|
|
|
|
.icon = A_Sub1ghz_14},
|
2020-10-20 05:45:38 +00:00
|
|
|
#endif
|
|
|
|
|
2020-11-18 09:39:10 +00:00
|
|
|
#ifdef BUILD_LF_RFID
|
|
|
|
{.app = lf_rfid_workaround,
|
|
|
|
.name = "125 kHz RFID",
|
|
|
|
.libs = {1, FURI_LIB{"gui_task"}},
|
|
|
|
.icon = A_125khz_14},
|
2020-10-20 05:45:38 +00:00
|
|
|
#endif
|
|
|
|
|
2020-11-18 09:39:10 +00:00
|
|
|
#ifdef BUILD_IRDA
|
|
|
|
{.app = irda, .name = "Infrared", .libs = {1, FURI_LIB{"gui_task"}}, .icon = A_Infrared_14},
|
2020-10-20 05:45:38 +00:00
|
|
|
#endif
|
|
|
|
|
2020-11-18 09:39:10 +00:00
|
|
|
#ifdef BUILD_IBUTTON
|
|
|
|
{.app = app_ibutton,
|
|
|
|
.name = "iButton",
|
|
|
|
.libs = {1, FURI_LIB{"gui_task"}},
|
|
|
|
.icon = A_iButton_14},
|
2020-10-20 05:45:38 +00:00
|
|
|
#endif
|
2020-10-26 07:16:54 +00:00
|
|
|
|
2020-11-18 09:39:10 +00:00
|
|
|
#ifdef BUILD_GPIO_DEMO
|
|
|
|
{.app = app_gpio_test, .name = "GPIO", .libs = {1, FURI_LIB{"gui_task"}}, .icon = A_GPIO_14},
|
2020-10-23 09:39:11 +00:00
|
|
|
#endif
|
2020-11-18 09:39:10 +00:00
|
|
|
};
|
2020-10-26 07:16:54 +00:00
|
|
|
|
2020-11-18 09:39:10 +00:00
|
|
|
// Plugin menu
|
|
|
|
const FlipperStartupApp FLIPPER_PLUGINS[] = {
|
|
|
|
#ifdef BUILD_EXAMPLE_BLINK
|
|
|
|
{.app = application_blink,
|
|
|
|
.name = "blink",
|
|
|
|
.libs = {1, FURI_LIB{"input_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-10-26 07:16:54 +00:00
|
|
|
#endif
|
2020-11-12 19:26:49 +00:00
|
|
|
|
2020-11-18 09:39:10 +00:00
|
|
|
#ifdef BUILD_EXAMPLE_INPUT_DUMP
|
|
|
|
{.app = application_input_dump,
|
|
|
|
.name = "input dump",
|
|
|
|
.libs = {1, FURI_LIB{"input_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-11-14 16:24:38 +00:00
|
|
|
#endif
|
|
|
|
|
2020-11-18 09:39:10 +00:00
|
|
|
#ifdef BUILD_SPEAKER_DEMO
|
|
|
|
{.app = coreglitch_demo_0, .name = "coreglitch_demo_0", .libs = {0}, .icon = A_Plugins_14},
|
2020-11-12 19:26:49 +00:00
|
|
|
#endif
|
2020-11-14 10:08:07 +00:00
|
|
|
|
2020-11-18 09:39:10 +00:00
|
|
|
#ifdef BUILD_SD_TEST
|
|
|
|
{.app = sd_card_test,
|
|
|
|
.name = "sd_card_test",
|
|
|
|
.libs = {1, FURI_LIB{"gui_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-11-14 10:08:07 +00:00
|
|
|
#endif
|
2020-11-16 11:21:58 +00:00
|
|
|
|
2020-11-18 09:39:10 +00:00
|
|
|
#ifdef BUILD_VIBRO_DEMO
|
|
|
|
{.app = application_vibro,
|
|
|
|
.name = "application_vibro",
|
|
|
|
.libs = {1, FURI_LIB{"input_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-11-16 11:21:58 +00:00
|
|
|
#endif
|
2020-11-16 20:21:45 +00:00
|
|
|
|
2020-11-16 17:12:05 +00:00
|
|
|
#ifdef BUILD_MUSIC_PLAYER
|
2020-11-18 09:39:10 +00:00
|
|
|
{.app = music_player,
|
|
|
|
.name = "music player",
|
|
|
|
.libs = {1, FURI_LIB{"gui_task"}},
|
|
|
|
.icon = A_Plugins_14},
|
2020-11-16 17:12:05 +00:00
|
|
|
#endif
|
2020-11-18 08:01:51 +00:00
|
|
|
|
|
|
|
#ifdef BUILD_FLOOPPER_BLOOPPER
|
2020-11-18 13:01:25 +00:00
|
|
|
{.app = floopper_bloopper,
|
|
|
|
.name = "Floopper Bloopper",
|
|
|
|
.libs = {1, FURI_LIB{"gui_task"}},
|
|
|
|
.icon = A_Games_14},
|
2020-11-18 08:01:51 +00:00
|
|
|
#endif
|
|
|
|
|
2020-11-18 13:01:25 +00:00
|
|
|
#ifdef BUILD_SDNFC
|
|
|
|
{.app = sdnfc, .name = "sdnfc", .libs = {1, FURI_LIB{"gui_task"}}, .icon = A_Plugins_14},
|
|
|
|
#endif
|
2020-10-20 05:45:38 +00:00
|
|
|
};
|