* Fixing compiler warnings with -Wextra * More warnings suppression, WIP * Even more warning fixes * Added new lines at end of text files. * Padding fix * Additional fixes to warnings on different build configurations; added -Wextra to default build pipeline * Fixes for Secplus v1 * -additional warnings * +-Wredundant-decls fixes * FuriHal: print stack overflow task name in console * FuriHal: add missing include Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			423 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			423 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
#include "../lfrfid_debug_app.h"
 | 
						|
 | 
						|
class LfRfidDebugAppSceneStart : public GenericScene<LfRfidDebugApp> {
 | 
						|
public:
 | 
						|
    void on_enter(LfRfidDebugApp* app, bool need_restore) final;
 | 
						|
    bool on_event(LfRfidDebugApp* app, LfRfidDebugApp::Event* event) final;
 | 
						|
    void on_exit(LfRfidDebugApp* app) final;
 | 
						|
 | 
						|
private:
 | 
						|
    void submenu_callback(void* context, uint32_t index);
 | 
						|
    uint32_t submenu_item_selected = 0;
 | 
						|
};
 |