2020-08-24 21:31:22 +06:00
|
|
|
#pragma once
|
|
|
|
|
|
2020-10-13 14:22:43 +06:00
|
|
|
#include "flipper.h"
|
2020-08-24 21:31:22 +06:00
|
|
|
|
2020-10-07 12:37:43 +03:00
|
|
|
#ifdef APP_TEST
|
2020-08-26 07:56:33 +06:00
|
|
|
void flipper_test_app(void* p);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void application_blink(void* p);
|
2020-08-27 00:32:22 +06:00
|
|
|
void application_uart_write(void* p);
|
2020-09-01 16:34:23 +06:00
|
|
|
void application_ipc_display(void* p);
|
|
|
|
|
void application_ipc_widget(void* p);
|
2020-10-02 09:44:05 +03:00
|
|
|
void application_input_dump(void* p);
|
2020-08-26 07:56:33 +06:00
|
|
|
|
2020-09-09 22:12:09 +06:00
|
|
|
void display_u8g2(void* p);
|
|
|
|
|
|
|
|
|
|
void u8g2_example(void* p);
|
|
|
|
|
|
2020-10-02 09:44:05 +03:00
|
|
|
void input_task(void* p);
|
2020-10-07 12:37:43 +03:00
|
|
|
void menu_task(void* p);
|
2020-10-02 09:44:05 +03:00
|
|
|
|
2020-09-09 22:54:21 +06:00
|
|
|
void coreglitch_demo_0(void* p);
|
|
|
|
|
|
2020-10-05 20:33:35 +10:00
|
|
|
void u8g2_qrcode(void* p);
|
2020-10-09 00:37:19 +10: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 16:21:55 +06:00
|
|
|
void gui_task(void* p);
|
2020-10-15 19:15:53 +03:00
|
|
|
void backlight_control(void* p);
|
2020-10-23 12:39:11 +03:00
|
|
|
void irda(void* p);
|
2020-10-17 11:48:52 +03:00
|
|
|
void app_loader(void* p);
|
2020-10-19 09:22:38 +03:00
|
|
|
void cc1101_workaround(void* p);
|
2020-10-26 15:56:46 +06:00
|
|
|
void lf_rfid_workaround(void* p);
|
2020-10-19 01:09:48 +03:00
|
|
|
void nfc_task(void* p);
|
2020-10-26 20:00:17 +03:00
|
|
|
void irukagotchi_task(void* p);
|
2020-10-29 10:11:16 +03:00
|
|
|
void power_task(void* p);
|
2020-11-14 19:24:38 +03:00
|
|
|
void sd_card_test(void* p);
|
2020-11-13 01:26:49 +06:00
|
|
|
void application_vibro(void* p);
|
2020-11-14 16:08:07 +06:00
|
|
|
void app_gpio_test(void* p);
|
2020-11-16 21:21:58 +10:00
|
|
|
void app_ibutton(void* p);
|
2020-11-16 13:16:34 +03:00
|
|
|
void cli_task(void* p);
|
2020-11-16 20:12:05 +03:00
|
|
|
void music_player(void* p);
|
2020-10-05 20:33:35 +10:00
|
|
|
|
2020-08-24 21:31:22 +06:00
|
|
|
const FlipperStartupApp FLIPPER_STARTUP[] = {
|
2020-10-07 12:37:43 +03:00
|
|
|
#ifdef APP_DISPLAY
|
2020-10-09 00:37:19 +10:00
|
|
|
{.app = display_u8g2, .name = "display_u8g2", .libs = {0}},
|
2020-09-30 02:18:30 +03:00
|
|
|
#endif
|
|
|
|
|
|
2020-11-16 13:16:34 +03:00
|
|
|
#ifdef APP_CLI
|
|
|
|
|
{.app = cli_task, .name = "cli_task", .libs = {0}},
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-10-26 13:16:54 +06:00
|
|
|
#ifdef APP_EXAMPLE_BLINK
|
2020-11-07 15:24:40 +06:00
|
|
|
{.app = application_blink, .name = "blink", .libs = {1, FURI_LIB{"input_task"}}},
|
2020-10-26 13:16:54 +06:00
|
|
|
#endif
|
|
|
|
|
|
2020-10-07 12:37:43 +03:00
|
|
|
#ifdef APP_INPUT
|
2020-10-09 00:37:19 +10:00
|
|
|
{.app = input_task, .name = "input_task", .libs = {0}},
|
2020-10-02 09:44:05 +03:00
|
|
|
#endif
|
|
|
|
|
|
2020-11-06 14:31:59 +06:00
|
|
|
#ifdef APP_EXAMPLE_INPUT_DUMP
|
|
|
|
|
{.app = application_input_dump, .name = "input dump", .libs = {1, FURI_LIB{"input_task"}}},
|
|
|
|
|
#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 16:21:55 +06:00
|
|
|
#ifdef APP_GUI
|
2020-10-15 19:15:53 +03:00
|
|
|
{.app = backlight_control, .name = "backlight_control", .libs = {1, FURI_LIB{"input_task"}}},
|
2020-10-15 18:56:47 +03:00
|
|
|
{.app = gui_task, .name = "gui_task", .libs = {0}},
|
2020-09-30 02:18:30 +03:00
|
|
|
#endif
|
2020-08-26 07:56:33 +06: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 16:21:55 +06:00
|
|
|
#ifdef APP_MENU
|
|
|
|
|
{.app = menu_task, .name = "menu_task", .libs = {1, FURI_LIB{"gui_task"}}},
|
2020-11-17 20:08:31 +03:00
|
|
|
{.app = app_loader, .name = "app_loader", .libs = {2, FURI_LIB{"menu_task", "cli_task"}}},
|
2020-09-30 02:18:30 +03:00
|
|
|
#endif
|
2020-10-26 20:00:17 +03:00
|
|
|
|
|
|
|
|
#ifdef APP_IRUKAGOTCHI
|
|
|
|
|
{.app = irukagotchi_task, .name = "irukagotchi_task", .libs = {1, FURI_LIB{"menu_task"}}},
|
|
|
|
|
#endif
|
2020-10-29 10:11:16 +03:00
|
|
|
|
|
|
|
|
#ifdef APP_POWER
|
2020-11-16 13:16:34 +03:00
|
|
|
{.app = power_task, .name = "power_task", .libs = {2, FURI_LIB{"cli_task", "gui_task"}}},
|
2020-10-29 10:11:16 +03:00
|
|
|
#endif
|
2020-10-07 12:37:43 +03:00
|
|
|
|
2020-10-19 09:22:38 +03:00
|
|
|
#ifdef APP_CC1101
|
|
|
|
|
{.app = cc1101_workaround, .name = "cc1101 workaround", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-10-26 15:56:46 +06:00
|
|
|
#ifdef APP_LF_RFID
|
|
|
|
|
{.app = lf_rfid_workaround, .name = "lf rfid workaround", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-10-23 12:39:11 +03:00
|
|
|
#ifdef APP_IRDA
|
|
|
|
|
{.app = irda, .name = "irda", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-10-19 01:09:48 +03:00
|
|
|
#ifdef APP_NFC
|
|
|
|
|
{.app = nfc_task, .name = "nfc_task", .libs = {1, FURI_LIB{"menu_task"}}},
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-10-07 12:37:43 +03:00
|
|
|
#ifdef APP_TEST
|
2020-10-09 00:37:19 +10:00
|
|
|
{.app = flipper_test_app, .name = "test app", .libs = {0}},
|
2020-09-30 02:18:30 +03:00
|
|
|
#endif
|
2020-10-07 12:37:43 +03:00
|
|
|
|
|
|
|
|
#ifdef APP_EXAMPLE_IPC
|
2020-10-09 00:37:19 +10:00
|
|
|
{.app = application_ipc_display, .name = "ipc display", .libs = {0}},
|
|
|
|
|
{.app = application_ipc_widget, .name = "ipc widget", .libs = {0}},
|
2020-09-30 02:18:30 +03:00
|
|
|
#endif
|
2020-10-07 12:37:43 +03:00
|
|
|
|
|
|
|
|
#ifdef APP_EXAMPLE_QRCODE
|
2020-10-09 00:37:19 +10:00
|
|
|
{.app = u8g2_qrcode, .name = "u8g2_qrcode", .libs = {1, FURI_LIB{"display_u8g2"}}},
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef APP_EXAMPLE_FATFS
|
|
|
|
|
{.app = fatfs_list, .name = "fatfs_list", .libs = {2, FURI_LIB{"display_u8g2", "input_task"}}},
|
2020-10-05 20:33:35 +10:00
|
|
|
#endif
|
2020-10-07 12:37:43 +03:00
|
|
|
|
|
|
|
|
#ifdef APP_EXAMPLE_DISPLAY
|
2020-10-09 00:37:19 +10:00
|
|
|
{.app = u8g2_example, .name = "u8g2_example", .libs = {1, FURI_LIB{"display_u8g2"}}},
|
2020-10-07 12:37:43 +03:00
|
|
|
#endif
|
2020-10-26 13:16:54 +06:00
|
|
|
|
|
|
|
|
#ifdef APP_SPEAKER_DEMO
|
2020-11-06 14:31:59 +06:00
|
|
|
{.app = coreglitch_demo_0, .name = "coreglitch_demo_0", .libs = {0}},
|
2020-10-26 13:16:54 +06:00
|
|
|
#endif
|
2020-11-14 16:08:07 +06:00
|
|
|
|
2020-11-14 19:24:38 +03:00
|
|
|
#ifdef APP_SD_TEST
|
|
|
|
|
{.app = sd_card_test, .name = "sd_card_test", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-11-16 20:12:05 +03:00
|
|
|
#ifdef APP_MUSIC_PLAYER
|
|
|
|
|
{.app = music_player, .name = "music player", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-11-16 21:21:58 +10:00
|
|
|
#ifdef APP_IBUTTON
|
|
|
|
|
{.app = app_ibutton, .name = "ibutton", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
|
#endif
|
2020-11-17 07:20:58 +10:00
|
|
|
|
|
|
|
|
#ifdef APP_GPIO_DEMO
|
|
|
|
|
{.app = app_gpio_test, .name = "gpio test", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
|
#endif
|
|
|
|
|
};
|
2020-10-20 08:45:38 +03:00
|
|
|
|
|
|
|
|
const FlipperStartupApp FLIPPER_APPS[] = {
|
|
|
|
|
#ifdef BUILD_EXAMPLE_BLINK
|
2020-11-07 15:24:40 +06:00
|
|
|
{.app = application_blink, .name = "blink", .libs = {1, FURI_LIB{"input_task"}}},
|
2020-10-20 08:45:38 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef BUILD_EXAMPLE_UART_WRITE
|
|
|
|
|
{.app = application_uart_write, .name = "uart write", .libs = {0}},
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef BUILD_EXAMPLE_INPUT_DUMP
|
|
|
|
|
{.app = application_input_dump, .name = "input dump", .libs = {1, FURI_LIB{"input_task"}}},
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef BUILD_CC1101
|
|
|
|
|
{.app = cc1101_workaround, .name = "cc1101 workaround", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
|
#endif
|
2020-10-26 13:16:54 +06:00
|
|
|
|
2020-10-26 15:56:46 +06:00
|
|
|
#ifdef BUILD_LF_RFID
|
|
|
|
|
{.app = lf_rfid_workaround, .name = "lf rfid workaround", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-10-23 12:39:11 +03:00
|
|
|
#ifdef BUILD_IRDA
|
|
|
|
|
{.app = irda, .name = "irda", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
|
#endif
|
2020-10-26 13:16:54 +06:00
|
|
|
|
|
|
|
|
#ifdef BUILD_SPEAKER_DEMO
|
|
|
|
|
{.app = coreglitch_demo_0, .name = "coreglitch_demo_0", .libs = {0}},
|
|
|
|
|
#endif
|
2020-11-13 01:26:49 +06:00
|
|
|
|
2020-11-14 19:24:38 +03:00
|
|
|
#ifdef BUILD_SD_TEST
|
|
|
|
|
{.app = sd_card_test, .name = "sd_card_test", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
|
#endif
|
|
|
|
|
|
2020-11-13 01:26:49 +06:00
|
|
|
#ifdef BUILD_VIBRO_DEMO
|
|
|
|
|
{.app = application_vibro, .name = "application_vibro", .libs = {1, FURI_LIB{"input_task"}}},
|
|
|
|
|
#endif
|
2020-11-14 16:08:07 +06:00
|
|
|
|
|
|
|
|
#ifdef BUILD_GPIO_DEMO
|
|
|
|
|
{.app = app_gpio_test, .name = "gpio test", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
|
#endif
|
2020-11-16 21:21:58 +10:00
|
|
|
|
|
|
|
|
#ifdef BUILD_IBUTTON
|
|
|
|
|
{.app = app_ibutton, .name = "ibutton", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
|
#endif
|
2020-11-17 06:21:45 +10:00
|
|
|
|
2020-11-16 20:12:05 +03:00
|
|
|
#ifdef BUILD_MUSIC_PLAYER
|
|
|
|
|
{.app = music_player, .name = "music player", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
|
#endif
|
2020-10-20 08:45:38 +03:00
|
|
|
};
|