 4dc82b68d1
			
		
	
	
		4dc82b68d1
		
			
		
	
	
	
	
		
			
			* Rename test functions * rewrite furi API, segfault * make fixes in FURI, log through FURI * add uart write example blank * implement fuprintf instead of fopencookie * add gif, blank page * UART write example description Co-authored-by: Vadim Kaushan <admin@disasm.info>
		
			
				
	
	
		
			28 lines
		
	
	
		
			558 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			558 B
		
	
	
	
		
			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);
 | |
| 
 | |
| const FlipperStartupApp FLIPPER_STARTUP[] = {
 | |
|     #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
 | |
| }; |