* [FL-3401] SubGhz: add "SubGhz test" external application * SubGhz: delete test test functionality from SubGhz app * [FL-3402] SubGhz: move func protocol creation API Co-authored-by: あく <alleteam@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);
 |