 f385340b2e
			
		
	
	
		f385340b2e
		
			
		
	
	
	
	
		
			
			* SubGhz: refactoring * WeGet: Add support for outputting formatted lines, events center button pressed, center button released * Variable Item: slightly changed the display of data on the screen * SubGhz: add show errors, add show preset, refactoring * SubGhz: refactoring transmitter * SubGhz: removed unused modules * SubGhz: Add FuriHalSubGhzPresetOok270Async setting menu * SubGhz: fix annotation * SubGhz: add support Nero Radio Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			72 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "subghz_protocol_common.h"
 | |
| 
 | |
| typedef struct SubGhzProtocolNeroRadio SubGhzProtocolNeroRadio;
 | |
| 
 | |
| /** Allocate SubGhzProtocolNeroRadio
 | |
|  * 
 | |
|  * @return SubGhzProtocolNeroRadio* 
 | |
|  */
 | |
| SubGhzProtocolNeroRadio* subghz_protocol_nero_radio_alloc();
 | |
| 
 | |
| /** Free SubGhzProtocolNeroRadio
 | |
|  * 
 | |
|  * @param instance 
 | |
|  */
 | |
| void subghz_protocol_nero_radio_free(SubGhzProtocolNeroRadio* instance);
 | |
| 
 | |
| /** Get upload protocol
 | |
|  * 
 | |
|  * @param instance - SubGhzProtocolNeroRadio instance
 | |
|  * @param encoder - SubGhzProtocolCommonEncoder encoder
 | |
|  * @return bool
 | |
|  */
 | |
| bool subghz_protocol_nero_radio_send_key(SubGhzProtocolNeroRadio* instance, SubGhzProtocolCommonEncoder* encoder);
 | |
| 
 | |
| /** Reset internal state
 | |
|  * @param instance - SubGhzProtocolNeroRadio instance
 | |
|  */
 | |
| void subghz_protocol_nero_radio_reset(SubGhzProtocolNeroRadio* instance);
 | |
| 
 | |
| /** Analysis of received data
 | |
|  * 
 | |
|  * @param instance SubGhzProtocolNeroRadio instance
 | |
|  */
 | |
| void subghz_protocol_nero_radio_check_remote_controller(SubGhzProtocolNeroRadio* instance);
 | |
| 
 | |
| /** Parse accepted duration
 | |
|  * 
 | |
|  * @param instance - SubGhzProtocolNeroRadio instance
 | |
|  * @param data - LevelDuration level_duration
 | |
|  */
 | |
| void subghz_protocol_nero_radio_parse(SubGhzProtocolNeroRadio* instance, bool level, uint32_t duration);
 | |
| 
 | |
| /** Outputting information from the parser
 | |
|  * 
 | |
|  * @param instance - SubGhzProtocolNeroRadio* instance
 | |
|  * @param output   - output string
 | |
|  */
 | |
| void subghz_protocol_nero_radio_to_str(SubGhzProtocolNeroRadio* instance, string_t output);
 | |
| 
 | |
| /** Get a string to save the protocol
 | |
|  * 
 | |
|  * @param instance  - SubGhzProtocolNeroRadio instance
 | |
|  * @param output    - the resulting string
 | |
|  */
 | |
| void subghz_protocol_nero_radio_to_save_str(SubGhzProtocolNeroRadio* instance, string_t output);
 | |
| 
 | |
| /** Loading protocol from file
 | |
|  * 
 | |
|  * @param file_worker - FileWorker file_worker
 | |
|  * @param instance - SubGhzProtocolNeroRadio instance
 | |
|  * @return bool
 | |
|  */
 | |
| bool subghz_protocol_nero_radio_to_load_protocol_from_file(FileWorker* file_worker, SubGhzProtocolNeroRadio* instance);
 | |
| 
 | |
| /** Loading protocol from bin data
 | |
|  * 
 | |
|  * @param instance - SubGhzProtocolNeroRadio instance
 | |
|  * @param context - SubGhzProtocolCommonLoad context
 | |
|  */
 | |
| void subghz_decoder_nero_radio_to_load_protocol(SubGhzProtocolNeroRadio* instance, void* context); |