 3164184bbc
			
		
	
	
		3164184bbc
		
			
		
	
	
	
	
		
			
			* SubGhz: protocols library refactoring * SubGhz: new architecture and refactoring * SubGhz: simplify protocol structure, remove unused types * SubGhz: rename Subghz to SubGhz * SubGhz: add environment concept Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com> Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			568 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			568 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <gui/view.h>
 | |
| 
 | |
| typedef enum {
 | |
|     SubGhzTestStaticEventOnlyRx,
 | |
| } SubGhzTestStaticEvent;
 | |
| 
 | |
| typedef struct SubGhzTestStatic SubGhzTestStatic;
 | |
| 
 | |
| typedef void (*SubGhzTestStaticCallback)(SubGhzTestStaticEvent event, void* context);
 | |
| 
 | |
| void subghz_test_static_set_callback(
 | |
|     SubGhzTestStatic* subghz_test_static,
 | |
|     SubGhzTestStaticCallback callback,
 | |
|     void* context);
 | |
| 
 | |
| SubGhzTestStatic* subghz_test_static_alloc();
 | |
| 
 | |
| void subghz_test_static_free(SubGhzTestStatic* subghz_static);
 | |
| 
 | |
| View* subghz_test_static_get_view(SubGhzTestStatic* subghz_static);
 |