 8cc3fd579c
			
		
	
	
		8cc3fd579c
		
			
		
	
	
	
	
		
			
			* SubGhz: CLI add "subghz decode_raw" * SubGhz: unit_test * SubGhz: add Hormann_hsm_raw unit_test * SubGhz: fix duration raw * Unit_test: fix total test timer * SubGHz: fix name display scher_khan * SubGhz: fix deviation protocol kia * SubGhz: return max name length to previous value * FuriHal: correctly handle mute in speaker * UnitTests: fix grammar in subghz Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "../types.h"
 | |
| 
 | |
| #include "princeton.h"
 | |
| #include "keeloq.h"
 | |
| #include "star_line.h"
 | |
| #include "nice_flo.h"
 | |
| #include "came.h"
 | |
| #include "faac_slh.h"
 | |
| #include "nice_flor_s.h"
 | |
| #include "came_twee.h"
 | |
| #include "came_atomo.h"
 | |
| #include "nero_sketch.h"
 | |
| #include "ido.h"
 | |
| #include "kia.h"
 | |
| #include "hormann.h"
 | |
| #include "nero_radio.h"
 | |
| #include "somfy_telis.h"
 | |
| #include "somfy_keytis.h"
 | |
| #include "scher_khan.h"
 | |
| #include "gate_tx.h"
 | |
| #include "raw.h"
 | |
| 
 | |
| /**
 | |
|  * Registration by name SubGhzProtocol.
 | |
|  * @param name Protocol name
 | |
|  * @return SubGhzProtocol* pointer to a SubGhzProtocol instance
 | |
|  */
 | |
| const SubGhzProtocol* subghz_protocol_registry_get_by_name(const char* name);
 | |
| 
 | |
| /**
 | |
|  * Registration protocol by index in array SubGhzProtocol.
 | |
|  * @param index Protocol by index in array
 | |
|  * @return SubGhzProtocol* pointer to a SubGhzProtocol instance
 | |
|  */
 | |
| const SubGhzProtocol* subghz_protocol_registry_get_by_index(size_t index);
 | |
| 
 | |
| /**
 | |
|  * Getting the number of registered protocols.
 | |
|  * @return Number of protocols
 | |
|  */
 | |
| size_t subghz_protocol_registry_count();
 |