 665f6d7d9c
			
		
	
	
		665f6d7d9c
		
			
		
	
	
	
	
		
			
			* Assets: import from gdrive * Assets: fully working build pipeline and registry * NFC: menu icon * Gui: layers. Irukagotchi: base app to handle input on idle screen. Makefile: reboot after flash in dfu mode. * ValueMutex: with lambda * Assets: proper animation frames sorting * ValueMutex: proper furi_open usage * Assets,GUI: split icon into icon data and icon state. * Format source code * Docker: add python3 and imagemagic * Irukagotchi: cleanup * GUI: event lock moved to gui. * Rfid: proper gui layer * GUI: elements. Menu: frame and scroll * GUI, Menu: format code. * Menu: dual font main menu * Menu: format sources * GUI: 0 total scrollbar * CI: enable lfs * Menu: pixel perfect main menu Co-authored-by: Aleksandr Kutuzov <aku@plooks.com> Co-authored-by: aanper <mail@s3f.ru>
		
			
				
	
	
		
			132 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "flipper.h"
 | |
| 
 | |
| #ifdef APP_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 application_input_dump(void* p);
 | |
| 
 | |
| void display_u8g2(void* p);
 | |
| 
 | |
| void u8g2_example(void* p);
 | |
| 
 | |
| void input_task(void* p);
 | |
| void menu_task(void* p);
 | |
| 
 | |
| void coreglitch_demo_0(void* p);
 | |
| 
 | |
| void u8g2_qrcode(void* p);
 | |
| void fatfs_list(void* p);
 | |
| void gui_task(void* p);
 | |
| void backlight_control(void* p);
 | |
| void irda(void* p);
 | |
| void app_loader(void* p);
 | |
| void cc1101_workaround(void* p);
 | |
| void lf_rfid_workaround(void* p);
 | |
| void nfc_task(void* p);
 | |
| void irukagotchi_task(void* p);
 | |
| 
 | |
| const FlipperStartupApp FLIPPER_STARTUP[] = {
 | |
| #ifdef APP_DISPLAY
 | |
|     {.app = display_u8g2, .name = "display_u8g2", .libs = {0}},
 | |
| #endif
 | |
| 
 | |
| #ifdef APP_EXAMPLE_BLINK
 | |
|     {.app = application_blink, .name = "blink", .libs = {0}},
 | |
| #endif
 | |
| 
 | |
| #ifdef APP_INPUT
 | |
|     {.app = input_task, .name = "input_task", .libs = {0}},
 | |
| #endif
 | |
| 
 | |
| #ifdef APP_GUI
 | |
|     {.app = backlight_control, .name = "backlight_control", .libs = {1, FURI_LIB{"input_task"}}},
 | |
|     {.app = gui_task, .name = "gui_task", .libs = {0}},
 | |
| #endif
 | |
| 
 | |
| #ifdef APP_MENU
 | |
|     {.app = menu_task, .name = "menu_task", .libs = {1, FURI_LIB{"gui_task"}}},
 | |
|     {.app = app_loader, .name = "app_loader", .libs = {1, FURI_LIB{"menu_task"}}},
 | |
| #endif
 | |
| 
 | |
| #ifdef APP_IRUKAGOTCHI
 | |
|     {.app = irukagotchi_task, .name = "irukagotchi_task", .libs = {1, FURI_LIB{"menu_task"}}},
 | |
| #endif
 | |
| 
 | |
| #ifdef APP_CC1101
 | |
|     {.app = cc1101_workaround, .name = "cc1101 workaround", .libs = {1, FURI_LIB{"gui_task"}}},
 | |
| #endif
 | |
| 
 | |
| #ifdef APP_LF_RFID
 | |
|     {.app = lf_rfid_workaround, .name = "lf rfid workaround", .libs = {1, FURI_LIB{"gui_task"}}},
 | |
| #endif
 | |
| 
 | |
| #ifdef APP_IRDA
 | |
|     {.app = irda, .name = "irda", .libs = {1, FURI_LIB{"gui_task"}}},
 | |
| #endif
 | |
| 
 | |
| #ifdef APP_NFC
 | |
|     {.app = nfc_task, .name = "nfc_task", .libs = {1, FURI_LIB{"menu_task"}}},
 | |
| #endif
 | |
| 
 | |
| #ifdef APP_TEST
 | |
|     {.app = flipper_test_app, .name = "test app", .libs = {0}},
 | |
| #endif
 | |
| 
 | |
| #ifdef APP_EXAMPLE_IPC
 | |
|     {.app = application_ipc_display, .name = "ipc display", .libs = {0}},
 | |
|     {.app = application_ipc_widget, .name = "ipc widget", .libs = {0}},
 | |
| #endif
 | |
| 
 | |
| #ifdef APP_EXAMPLE_QRCODE
 | |
|     {.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"}}},
 | |
| #endif
 | |
| 
 | |
| #ifdef APP_EXAMPLE_DISPLAY
 | |
|     {.app = u8g2_example, .name = "u8g2_example", .libs = {1, FURI_LIB{"display_u8g2"}}},
 | |
| #endif
 | |
| 
 | |
| #ifdef APP_SPEAKER_DEMO
 | |
|     {.app = coreglitch_demo_0, .name = "coreglitch_demo_0", .libs = ""},
 | |
| #endif
 | |
| };
 | |
| 
 | |
| const FlipperStartupApp FLIPPER_APPS[] = {
 | |
| #ifdef BUILD_EXAMPLE_BLINK
 | |
|     {.app = application_blink, .name = "blink", .libs = {0}},
 | |
| #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
 | |
| 
 | |
| #ifdef BUILD_LF_RFID
 | |
|     {.app = lf_rfid_workaround, .name = "lf rfid workaround", .libs = {1, FURI_LIB{"gui_task"}}},
 | |
| #endif
 | |
| 
 | |
| #ifdef BUILD_IRDA
 | |
|     {.app = irda, .name = "irda", .libs = {1, FURI_LIB{"gui_task"}}},
 | |
| #endif
 | |
| 
 | |
| #ifdef BUILD_SPEAKER_DEMO
 | |
|     {.app = coreglitch_demo_0, .name = "coreglitch_demo_0", .libs = {0}},
 | |
| #endif
 | |
| }; |