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-08 14:37:19 +00:00
|
|
|
#define FURI_LIB (const char*[])
|
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-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-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
|
|
|
|
|
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
|
|
|
|
{.app = gui_task, .name = "gui_task", .libs = {1, FURI_LIB{"display_u8g2"}}},
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef APP_MENU
|
|
|
|
{.app = menu_task, .name = "menu_task", .libs = {1, FURI_LIB{"gui_task"}}},
|
|
|
|
#endif
|
|
|
|
|
2020-10-05 10:17:34 +00:00
|
|
|
// {.app = coreglitch_demo_0, .name = "coreglitch_demo_0", .libs = ""},
|
2020-09-09 16:54:21 +00:00
|
|
|
|
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-08-26 01:56:33 +00:00
|
|
|
|
2020-10-07 09:37:43 +00:00
|
|
|
#ifdef APP_EXAMPLE_BLINK
|
2020-10-08 14:37:19 +00:00
|
|
|
{.app = application_blink, .name = "blink", .libs = {0}},
|
2020-09-29 23:18:30 +00:00
|
|
|
#endif
|
2020-10-07 09:37:43 +00:00
|
|
|
|
|
|
|
#ifdef APP_EXAMPLE_UART_WRITE
|
2020-10-08 14:37:19 +00:00
|
|
|
{.app = application_uart_write, .name = "uart write", .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_INPUT_DUMP
|
2020-10-08 14:37:19 +00:00
|
|
|
{.app = application_input_dump, .name = "input dump", .libs = {1, FURI_LIB{"input_task"}}},
|
2020-10-02 06:44:05 +00:00
|
|
|
#endif
|
2020-10-05 10:33:35 +00:00
|
|
|
|
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-08 14:37:19 +00:00
|
|
|
|
2020-09-29 23:18:30 +00:00
|
|
|
};
|