2021-10-17 22:54:19 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "subghz_protocol_common.h"
|
|
|
|
|
|
|
|
typedef struct SubGhzProtocolGateTX SubGhzProtocolGateTX;
|
|
|
|
|
|
|
|
/** Allocate SubGhzProtocolGateTX
|
|
|
|
*
|
|
|
|
* @return SubGhzProtocolGateTX*
|
|
|
|
*/
|
|
|
|
SubGhzProtocolGateTX* subghz_protocol_gate_tx_alloc();
|
|
|
|
|
|
|
|
/** Free SubGhzProtocolGateTX
|
|
|
|
*
|
|
|
|
* @param instance
|
|
|
|
*/
|
|
|
|
void subghz_protocol_gate_tx_free(SubGhzProtocolGateTX* instance);
|
|
|
|
|
|
|
|
/** Get upload protocol
|
|
|
|
*
|
|
|
|
* @param instance - SubGhzProtocolGateTX instance
|
|
|
|
* @param encoder - SubGhzProtocolCommonEncoder encoder
|
|
|
|
* @return bool
|
|
|
|
*/
|
2021-10-25 14:37:14 +00:00
|
|
|
bool subghz_protocol_gate_tx_send_key(
|
|
|
|
SubGhzProtocolGateTX* instance,
|
|
|
|
SubGhzProtocolCommonEncoder* encoder);
|
2021-10-17 22:54:19 +00:00
|
|
|
|
|
|
|
/** Reset internal state
|
|
|
|
* @param instance - SubGhzProtocolGateTX instance
|
|
|
|
*/
|
|
|
|
void subghz_protocol_gate_tx_reset(SubGhzProtocolGateTX* instance);
|
|
|
|
|
|
|
|
/** Parse accepted duration
|
|
|
|
*
|
|
|
|
* @param instance - SubGhzProtocolGateTX instance
|
|
|
|
* @param data - LevelDuration level_duration
|
|
|
|
*/
|
|
|
|
void subghz_protocol_gate_tx_parse(SubGhzProtocolGateTX* instance, bool level, uint32_t duration);
|
|
|
|
|
|
|
|
/** Outputting information from the parser
|
|
|
|
*
|
|
|
|
* @param instance - SubGhzProtocolFaacSLH* instance
|
|
|
|
* @param output - output string
|
|
|
|
*/
|
|
|
|
void subghz_protocol_gate_tx_to_str(SubGhzProtocolGateTX* instance, string_t output);
|
|
|
|
|
2021-11-11 12:49:19 +00:00
|
|
|
/** Adding data to a file
|
2021-10-17 22:54:19 +00:00
|
|
|
*
|
|
|
|
* @param instance - SubGhzProtocolGateTX instance
|
2021-11-11 12:49:19 +00:00
|
|
|
* @param flipper_file - FlipperFile
|
|
|
|
* @return bool
|
2021-10-17 22:54:19 +00:00
|
|
|
*/
|
2021-11-11 12:49:19 +00:00
|
|
|
bool subghz_protocol_gate_tx_to_save_file(
|
|
|
|
SubGhzProtocolGateTX* instance,
|
|
|
|
FlipperFile* flipper_file);
|
2021-10-17 22:54:19 +00:00
|
|
|
|
|
|
|
/** Loading protocol from file
|
|
|
|
*
|
2021-11-11 12:49:19 +00:00
|
|
|
* @param flipper_file - FlipperFile
|
2021-10-17 22:54:19 +00:00
|
|
|
* @param instance - SubGhzProtocolGateTX instance
|
2021-10-25 14:37:14 +00:00
|
|
|
* @param file_path - file path
|
2021-10-17 22:54:19 +00:00
|
|
|
* @return bool
|
|
|
|
*/
|
2021-10-25 14:37:14 +00:00
|
|
|
bool subghz_protocol_gate_tx_to_load_protocol_from_file(
|
2021-11-11 12:49:19 +00:00
|
|
|
FlipperFile* flipper_file,
|
2021-10-25 14:37:14 +00:00
|
|
|
SubGhzProtocolGateTX* instance,
|
|
|
|
const char* file_path);
|
2021-10-17 22:54:19 +00:00
|
|
|
|
|
|
|
/** Loading protocol from bin data
|
|
|
|
*
|
|
|
|
* @param instance - SubGhzProtocolGateTX instance
|
|
|
|
* @param context - SubGhzProtocolCommonLoad context
|
|
|
|
*/
|
|
|
|
void subghz_decoder_gate_tx_to_load_protocol(SubGhzProtocolGateTX* instance, void* context);
|