2021-09-10 00:29:57 +00:00
|
|
|
#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
|
|
|
|
*/
|
2021-10-25 14:37:14 +00:00
|
|
|
bool subghz_protocol_nero_radio_send_key(
|
|
|
|
SubGhzProtocolNeroRadio* instance,
|
|
|
|
SubGhzProtocolCommonEncoder* encoder);
|
2021-09-10 00:29:57 +00:00
|
|
|
|
|
|
|
/** 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
|
|
|
|
*/
|
2021-10-25 14:37:14 +00:00
|
|
|
void subghz_protocol_nero_radio_parse(
|
|
|
|
SubGhzProtocolNeroRadio* instance,
|
|
|
|
bool level,
|
|
|
|
uint32_t duration);
|
2021-09-10 00:29:57 +00:00
|
|
|
|
|
|
|
/** 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);
|
|
|
|
|
2021-11-11 12:49:19 +00:00
|
|
|
/** Adding data to a file
|
2021-09-10 00:29:57 +00:00
|
|
|
*
|
|
|
|
* @param instance - SubGhzProtocolNeroRadio instance
|
2021-11-11 12:49:19 +00:00
|
|
|
* @param flipper_file - FlipperFile
|
|
|
|
* @return bool
|
2021-09-10 00:29:57 +00:00
|
|
|
*/
|
2021-11-11 12:49:19 +00:00
|
|
|
bool subghz_protocol_nero_radio_to_save_file(
|
|
|
|
SubGhzProtocolNeroRadio* instance,
|
|
|
|
FlipperFile* flipper_file);
|
2021-09-10 00:29:57 +00:00
|
|
|
|
|
|
|
/** Loading protocol from file
|
|
|
|
*
|
2021-11-11 12:49:19 +00:00
|
|
|
* @param flipper_file - FlipperFile
|
2021-09-10 00:29:57 +00:00
|
|
|
* @param instance - SubGhzProtocolNeroRadio instance
|
2021-10-25 14:37:14 +00:00
|
|
|
* @param file_path - file path
|
2021-09-10 00:29:57 +00:00
|
|
|
* @return bool
|
|
|
|
*/
|
2021-10-25 14:37:14 +00:00
|
|
|
bool subghz_protocol_nero_radio_to_load_protocol_from_file(
|
2021-11-11 12:49:19 +00:00
|
|
|
FlipperFile* flipper_file,
|
2021-10-25 14:37:14 +00:00
|
|
|
SubGhzProtocolNeroRadio* instance,
|
|
|
|
const char* file_path);
|
2021-09-10 00:29:57 +00:00
|
|
|
|
|
|
|
/** 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);
|