* FuriHal: RTC API refactoring. System Setting application. FuriCore: adjustable log levels. Minor code cleanup. * Storage: change logging levels for internal storage. * FuriCore: fix broken trace logging level
		
			
				
	
	
		
			19 lines
		
	
	
		
			350 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			350 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <furi.h>
 | 
						|
#include <furi-hal.h>
 | 
						|
 | 
						|
#include <gui/gui.h>
 | 
						|
#include <gui/view_dispatcher.h>
 | 
						|
#include <gui/modules/variable-item-list.h>
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    Gui* gui;
 | 
						|
    ViewDispatcher* view_dispatcher;
 | 
						|
    VariableItemList* var_item_list;
 | 
						|
} SystemSettings;
 | 
						|
 | 
						|
typedef enum {
 | 
						|
    SystemSettingsViewVarItemList,
 | 
						|
} SystemSettingsView;
 |