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-10-26 17:00:17 +00:00
|
|
|
void irukagotchi_task(void* p);
|
2020-10-29 07:11:16 +00:00
|
|
|
void power_task(void* p);
|
2020-11-12 19:26:49 +00:00
|
|
|
void application_vibro(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-10-08 14:37:19 +00:00
|
|
|
{.app = display_u8g2, .name = "display_u8g2", .libs = {0}},
|
2020-09-29 23:18:30 +00:00
|
|
|
#endif
|
|
|
|
|
2020-10-26 07:16:54 +00:00
|
|
|
#ifdef APP_EXAMPLE_BLINK
|
2020-11-07 09:24:40 +00:00
|
|
|
{.app = application_blink, .name = "blink", .libs = {1, FURI_LIB{"input_task"}}},
|
2020-10-26 07:16:54 +00:00
|
|
|
#endif
|
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
#ifdef APP_INPUT
|
2020-10-08 14:37:19 +00:00
|
|
|
{.app = input_task, .name = "input_task", .libs = {0}},
|
2020-10-02 06:44:05 +00:00
|
|
|
#endif
|
|
|
|
|
2020-11-06 08:31:59 +00: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 10:21:55 +00:00
|
|
|
#ifdef APP_GUI
|
2020-10-15 16:15:53 +00:00
|
|
|
{.app = backlight_control, .name = "backlight_control", .libs = {1, FURI_LIB{"input_task"}}},
|
2020-10-15 15:56:47 +00:00
|
|
|
{.app = gui_task, .name = "gui_task", .libs = {0}},
|
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
|
|
|
|
{.app = menu_task, .name = "menu_task", .libs = {1, FURI_LIB{"gui_task"}}},
|
2020-10-17 08:48:52 +00:00
|
|
|
{.app = app_loader, .name = "app_loader", .libs = {1, FURI_LIB{"menu_task"}}},
|
2020-09-29 23:18:30 +00:00
|
|
|
#endif
|
2020-10-26 17:00:17 +00:00
|
|
|
|
|
|
|
#ifdef APP_IRUKAGOTCHI
|
|
|
|
{.app = irukagotchi_task, .name = "irukagotchi_task", .libs = {1, FURI_LIB{"menu_task"}}},
|
|
|
|
#endif
|
2020-10-29 07:11:16 +00:00
|
|
|
|
|
|
|
#ifdef APP_POWER
|
|
|
|
{.app = power_task, .name = "power_task", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
#endif
|
2020-10-07 09:37:43 +00:00
|
|
|
|
2020-10-19 06:22:38 +00:00
|
|
|
#ifdef APP_CC1101
|
|
|
|
{.app = cc1101_workaround, .name = "cc1101 workaround", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
#endif
|
|
|
|
|
2020-10-26 09:56:46 +00:00
|
|
|
#ifdef APP_LF_RFID
|
|
|
|
{.app = lf_rfid_workaround, .name = "lf rfid workaround", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
#endif
|
|
|
|
|
2020-10-23 09:39:11 +00:00
|
|
|
#ifdef APP_IRDA
|
|
|
|
{.app = irda, .name = "irda", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
#endif
|
|
|
|
|
2020-10-18 22:09:48 +00:00
|
|
|
#ifdef APP_NFC
|
|
|
|
{.app = nfc_task, .name = "nfc_task", .libs = {1, FURI_LIB{"menu_task"}}},
|
|
|
|
#endif
|
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
#ifdef APP_TEST
|
2020-10-08 14:37:19 +00:00
|
|
|
{.app = flipper_test_app, .name = "test app", .libs = {0}},
|
2020-09-29 23:18:30 +00:00
|
|
|
#endif
|
2020-10-07 09:37:43 +00:00
|
|
|
|
|
|
|
#ifdef APP_EXAMPLE_IPC
|
2020-10-08 14:37:19 +00:00
|
|
|
{.app = application_ipc_display, .name = "ipc display", .libs = {0}},
|
|
|
|
{.app = application_ipc_widget, .name = "ipc widget", .libs = {0}},
|
2020-09-29 23:18:30 +00:00
|
|
|
#endif
|
2020-10-07 09:37:43 +00:00
|
|
|
|
|
|
|
#ifdef APP_EXAMPLE_QRCODE
|
2020-10-08 14:37:19 +00: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 10:33:35 +00:00
|
|
|
#endif
|
2020-10-07 09:37:43 +00:00
|
|
|
|
|
|
|
#ifdef APP_EXAMPLE_DISPLAY
|
2020-10-08 14:37:19 +00:00
|
|
|
{.app = u8g2_example, .name = "u8g2_example", .libs = {1, FURI_LIB{"display_u8g2"}}},
|
2020-10-07 09:37:43 +00:00
|
|
|
#endif
|
2020-10-26 07:16:54 +00:00
|
|
|
|
|
|
|
#ifdef APP_SPEAKER_DEMO
|
2020-11-06 08:31:59 +00:00
|
|
|
{.app = coreglitch_demo_0, .name = "coreglitch_demo_0", .libs = {0}},
|
2020-10-26 07:16:54 +00:00
|
|
|
#endif
|
2020-09-29 23:18:30 +00:00
|
|
|
};
|
2020-10-20 05:45:38 +00:00
|
|
|
|
|
|
|
const FlipperStartupApp FLIPPER_APPS[] = {
|
|
|
|
#ifdef BUILD_EXAMPLE_BLINK
|
2020-11-07 09:24:40 +00:00
|
|
|
{.app = application_blink, .name = "blink", .libs = {1, FURI_LIB{"input_task"}}},
|
2020-10-20 05:45:38 +00: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 07:16:54 +00:00
|
|
|
|
2020-10-26 09:56:46 +00:00
|
|
|
#ifdef BUILD_LF_RFID
|
|
|
|
{.app = lf_rfid_workaround, .name = "lf rfid workaround", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
#endif
|
|
|
|
|
2020-10-23 09:39:11 +00:00
|
|
|
#ifdef BUILD_IRDA
|
|
|
|
{.app = irda, .name = "irda", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
#endif
|
2020-10-26 07:16:54 +00:00
|
|
|
|
|
|
|
#ifdef BUILD_SPEAKER_DEMO
|
|
|
|
{.app = coreglitch_demo_0, .name = "coreglitch_demo_0", .libs = {0}},
|
|
|
|
#endif
|
2020-11-12 19:26:49 +00:00
|
|
|
|
|
|
|
#ifdef BUILD_VIBRO_DEMO
|
|
|
|
{.app = application_vibro, .name = "application_vibro", .libs = {1, FURI_LIB{"input_task"}}},
|
|
|
|
#endif
|
2020-10-20 05:45:38 +00:00
|
|
|
};
|