* SubGhz: changing the operation of the capture timer, and the logic of the work of parsers * Add toolbox lib. Move levels to toolbox. Subghz switch to levels. * Subghz: update worker signatures * SubGhz: pluggable level duration implementations. * SubGhz : test drawing pictures in Gui * SubGhz: Added a callback with the parser structure as argument * SubGhz: copy protocol data to model * SubGhz: refactoing code * SubGhz: cleanup and format sources * SubGhz: remove comments Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com> Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
		
			
				
	
	
		
			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);
 |