 24a23e5dc7
			
		
	
	
		24a23e5dc7
		
			
		
	
	
	
	
		
			
			* sdk: resolve additional APIs in use by faps * debug tools: fixed battery_test, bt_debug, display_test, rpc_debug Co-authored-by: hedger <hedger@nanode.su> Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			306 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			306 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "bt_settings_filename.h"
 | |
| 
 | |
| #include <stdint.h>
 | |
| #include <stdbool.h>
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| typedef struct {
 | |
|     bool enabled;
 | |
| } BtSettings;
 | |
| 
 | |
| bool bt_settings_load(BtSettings* bt_settings);
 | |
| 
 | |
| bool bt_settings_save(BtSettings* bt_settings);
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif |