118611eabd
* add u8g2 and ui libs * add display driver and usage example * not init display in test mode * change todo text * fix removed code * add ioc for flipperzero f2 * add generated f1 files to f2 * regenerate cubemx * invert initial state of led * blink backligh * shutdown backlight on idle * more rave! * add todo
47 lines
1.1 KiB
C
47 lines
1.1 KiB
C
#pragma once
|
|
|
|
#include "furi.h"
|
|
|
|
typedef struct {
|
|
FlipperApplication app;
|
|
const char* name;
|
|
} FlipperStartupApp;
|
|
|
|
#ifdef TEST
|
|
void flipper_test_app(void* p);
|
|
#endif
|
|
|
|
void application_blink(void* p);
|
|
void application_uart_write(void* p);
|
|
void application_ipc_display(void* p);
|
|
void application_ipc_widget(void* p);
|
|
|
|
void display_u8g2(void* p);
|
|
|
|
void u8g2_example(void* p);
|
|
|
|
void coreglitch_demo_0(void* p);
|
|
|
|
const FlipperStartupApp FLIPPER_STARTUP[] = {
|
|
#ifndef TEST
|
|
{.app = display_u8g2, .name = "display_u8g2"},
|
|
{.app = u8g2_example, .name = "u8g2_example"},
|
|
#endif
|
|
|
|
// {.app = coreglitch_demo_0, .name = "coreglitch_demo_0"},
|
|
|
|
#ifdef TEST
|
|
{.app = flipper_test_app, .name = "test app"},
|
|
#endif
|
|
|
|
#ifdef EXAMPLE_BLINK
|
|
{.app = application_blink, .name = "blink"},
|
|
#endif
|
|
#ifdef EXAMPLE_UART_WRITE
|
|
{.app = application_uart_write, .name = "uart write"},
|
|
#endif
|
|
#ifdef EXAMPLE_IPC
|
|
{.app = application_ipc_display, .name = "ipc display"},
|
|
{.app = application_ipc_widget, .name = "ipc widget"},
|
|
#endif
|
|
}; |