* Firmware: drop F5 target * Rename app-loader to loader * Update code owners file * Loader: global application start lock API, minor refactoring * Archive: update loader usage * Cli: Command flags, global application start lock * Apps: update cli API usage * Bootloader: minor refactoring * Firmware: minor build refactoring * SubGhz: GUI packet test * SubGhz: drop packet transmission and unused presets * Github: drop F5 from build * Archive: favorites * Archive: a little bit more of Favorites
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include "subghz_protocol_common.h"
 | 
						|
 | 
						|
typedef void (*SubGhzProtocolTextCallback)(string_t text, void* context);
 | 
						|
typedef void (*SubGhzProtocolCommonCallbackDump)(SubGhzProtocolCommon *parser, void* context);
 | 
						|
 | 
						|
typedef struct SubGhzProtocol SubGhzProtocol;
 | 
						|
 | 
						|
/** Allocate SubGhzProtocol
 | 
						|
 * 
 | 
						|
 * @return SubGhzProtocol* 
 | 
						|
 */
 | 
						|
SubGhzProtocol* subghz_protocol_alloc();
 | 
						|
 | 
						|
/** Free SubGhzProtocol
 | 
						|
 * 
 | 
						|
 * @param instance 
 | 
						|
 */
 | 
						|
void subghz_protocol_free(SubGhzProtocol* instance);
 | 
						|
 | 
						|
/** Outputting data text from all parsers
 | 
						|
 * 
 | 
						|
 * @param instance - SubGhzProtocol instance
 | 
						|
 * @param callback - SubGhzProtocolTextCallback callback
 | 
						|
 * @param context
 | 
						|
 */
 | 
						|
void subghz_protocol_enable_dump_text(SubGhzProtocol* instance, SubGhzProtocolTextCallback callback, void* context);
 | 
						|
 | 
						|
/** Outputting data SubGhzProtocol from all parsers
 | 
						|
 * 
 | 
						|
 * @param instance - SubGhzProtocol instance
 | 
						|
 * @param callback - SubGhzProtocolTextCallback callback
 | 
						|
 * @param context
 | 
						|
 */
 | 
						|
void subghz_protocol_enable_dump( SubGhzProtocol* instance, SubGhzProtocolCommonCallbackDump callback, void* context);
 | 
						|
 | 
						|
/** File name rainbow table Nice Flor-S
 | 
						|
 * 
 | 
						|
 * @param instance - SubGhzProtocol instance
 | 
						|
 * @param file_name - "path/file_name"
 | 
						|
 */
 | 
						|
void subghz_protocol_load_nice_flor_s_file(SubGhzProtocol* instance, const char* file_name);
 | 
						|
 | 
						|
/** File upload manufacture keys
 | 
						|
 * 
 | 
						|
 * @param instance - SubGhzProtocol instance
 | 
						|
 * @param file_name - "path/file_name"
 | 
						|
 */
 | 
						|
void subghz_protocol_load_keeloq_file(SubGhzProtocol* instance, const char* file_name);
 | 
						|
 | 
						|
/** Restarting all parsers
 | 
						|
 * 
 | 
						|
 * @param instance - SubGhzProtocol instance
 | 
						|
 */
 | 
						|
void subghz_protocol_reset(SubGhzProtocol* instance);
 | 
						|
 | 
						|
/** Loading data into all parsers
 | 
						|
 * 
 | 
						|
 * @param instance - SubGhzProtocol instance
 | 
						|
 * @param level - true is high, false if low
 | 
						|
 * @param duration - level duration in microseconds
 | 
						|
 */
 | 
						|
void subghz_protocol_parse(SubGhzProtocol* instance, bool level, uint32_t duration);
 |