* Power: wait a little bit till message displayed on screen when executing power off. FuriCore: do not use bkpt in release builds(causing HardFault when SPI is active). * Cleanup BSS section: add more consty consts to be more constish. * Desktop: properly handle autostarted applications.
		
			
				
	
	
		
			16 lines
		
	
	
		
			248 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			248 B
		
	
	
	
		
			C
		
	
	
	
	
	
/**
 | 
						|
 * @file icon_i.h
 | 
						|
 * GUI: internal Icon API
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
#include "icon.h"
 | 
						|
 | 
						|
struct Icon {
 | 
						|
    const uint8_t width;
 | 
						|
    const uint8_t height;
 | 
						|
    const uint8_t frame_count;
 | 
						|
    const uint8_t frame_rate;
 | 
						|
    const uint8_t* const* frames;
 | 
						|
};
 |