 72ca6b25e9
			
		
	
	
		72ca6b25e9
		
			
		
	
	
	
	
		
			
			* SubGhz: add error protocol * WS: add error protocol * SubGhz: error processing * SubGhz: more stringent CAME protocol restrictions * SubGhz: fix header duration CAME protocol * SubGhz: delete comments * SubGhz: sync SubGhzProtocolStatus with FuriStatus * SubGhz: update documentation and bump api_version Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "types.h"
 | |
| #include "environment.h"
 | |
| #include "protocols/base.h"
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| typedef struct SubGhzTransmitter SubGhzTransmitter;
 | |
| 
 | |
| /**
 | |
|  * Allocate and init SubGhzTransmitter.
 | |
|  * @param environment Pointer to a SubGhzEnvironment instance
 | |
|  * @return SubGhzTransmitter* pointer to a SubGhzTransmitter instance
 | |
|  */
 | |
| SubGhzTransmitter*
 | |
|     subghz_transmitter_alloc_init(SubGhzEnvironment* environment, const char* protocol_name);
 | |
| 
 | |
| /**
 | |
|  * Free SubGhzTransmitter.
 | |
|  * @param instance Pointer to a SubGhzTransmitter instance
 | |
|  */
 | |
| void subghz_transmitter_free(SubGhzTransmitter* instance);
 | |
| 
 | |
| /** Get protocol instance.
 | |
|  * @param instance Pointer to a SubGhzTransmitter instance
 | |
|  */
 | |
| SubGhzProtocolEncoderBase* subghz_transmitter_get_protocol_instance(SubGhzTransmitter* instance);
 | |
| 
 | |
| /**
 | |
|  * Forced transmission stop.
 | |
|  * @param instance Pointer to a SubGhzTransmitter instance
 | |
|  */
 | |
| bool subghz_transmitter_stop(SubGhzTransmitter* instance);
 | |
| 
 | |
| /**
 | |
|  * Deserialize and generating an upload to send.
 | |
|  * @param instance Pointer to a SubGhzTransmitter instance
 | |
|  * @param flipper_format Pointer to a FlipperFormat instance
 | |
|  * @return status
 | |
|  */
 | |
| SubGhzProtocolStatus
 | |
|     subghz_transmitter_deserialize(SubGhzTransmitter* instance, FlipperFormat* flipper_format);
 | |
| 
 | |
| /**
 | |
|  * Getting the level and duration of the upload to be loaded into DMA.
 | |
|  * @param context Pointer to a SubGhzTransmitter instance
 | |
|  * @return LevelDuration 
 | |
|  */
 | |
| LevelDuration subghz_transmitter_yield(void* context);
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 |