bde3a47078
* Git: set git attributes to automatically manage line endings. * Git: cleanup gitignore file
70 lines
1.9 KiB
C
70 lines
1.9 KiB
C
#pragma once
|
|
|
|
#include "subghz_protocol_common.h"
|
|
|
|
typedef struct SubGhzProtocolCame SubGhzProtocolCame;
|
|
|
|
/** Allocate SubGhzProtocolCame
|
|
*
|
|
* @return SubGhzProtocolCame*
|
|
*/
|
|
SubGhzProtocolCame* subghz_protocol_came_alloc();
|
|
|
|
/** Free SubGhzProtocolCame
|
|
*
|
|
* @param instance
|
|
*/
|
|
void subghz_protocol_came_free(SubGhzProtocolCame* instance);
|
|
|
|
/** Get upload protocol
|
|
*
|
|
* @param instance - SubGhzProtocolCame instance
|
|
* @param encoder - SubGhzProtocolCommonEncoder encoder
|
|
* @return bool
|
|
*/
|
|
bool subghz_protocol_came_send_key(
|
|
SubGhzProtocolCame* instance,
|
|
SubGhzProtocolCommonEncoder* encoder);
|
|
|
|
/** Reset internal state
|
|
* @param instance - SubGhzProtocolCame instance
|
|
*/
|
|
void subghz_protocol_came_reset(SubGhzProtocolCame* instance);
|
|
|
|
/** Parse accepted duration
|
|
*
|
|
* @param instance - SubGhzProtocolCame instance
|
|
* @param data - LevelDuration level_duration
|
|
*/
|
|
void subghz_protocol_came_parse(SubGhzProtocolCame* instance, bool level, uint32_t duration);
|
|
|
|
/** Outputting information from the parser
|
|
*
|
|
* @param instance - SubGhzProtocolCame* instance
|
|
* @param output - output string
|
|
*/
|
|
void subghz_protocol_came_to_str(SubGhzProtocolCame* instance, string_t output);
|
|
|
|
/** Get a string to save the protocol
|
|
*
|
|
* @param instance - SubGhzProtocolCame instance
|
|
* @param output - the resulting string
|
|
*/
|
|
void subghz_protocol_came_to_save_str(SubGhzProtocolCame* instance, string_t output);
|
|
|
|
/** Loading protocol from file
|
|
*
|
|
* @param file_worker - FileWorker file_worker
|
|
* @param instance - SubGhzProtocolCame instance
|
|
* @return bool
|
|
*/
|
|
bool subghz_protocol_came_to_load_protocol_from_file(
|
|
FileWorker* file_worker,
|
|
SubGhzProtocolCame* instance);
|
|
|
|
/** Loading protocol from bin data
|
|
*
|
|
* @param instance - SubGhzProtocolCame instance
|
|
* @param context - SubGhzProtocolCommonLoad context
|
|
*/
|
|
void subghz_decoder_came_to_load_protocol(SubGhzProtocolCame* instance, void* context); |