4bf29827f8
* Quicksave 1 * Header stage complete * Source stage complete * Lint & merge fixes * Includes * Documentation step 1 * FBT: output free size considering BT STACK * Documentation step 2 * py lint * Fix music player plugin * unit test stage 1: string allocator, mem, getters, setters, appends, compare, search. * unit test: string equality * unit test: string replace * unit test: string start_with, end_with * unit test: string trim * unit test: utf-8 * Rename * Revert fw_size changes * Simplify CLI backspace handling * Simplify CLI character insert * Merge fixes * Furi: correct filenaming and spelling * Bt: remove furi string include Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
63 lines
1.8 KiB
C
63 lines
1.8 KiB
C
#include "base.h"
|
|
#include "registry.h"
|
|
|
|
void subghz_protocol_decoder_base_set_decoder_callback(
|
|
SubGhzProtocolDecoderBase* decoder_base,
|
|
SubGhzProtocolDecoderBaseRxCallback callback,
|
|
void* context) {
|
|
decoder_base->callback = callback;
|
|
decoder_base->context = context;
|
|
}
|
|
|
|
bool subghz_protocol_decoder_base_get_string(
|
|
SubGhzProtocolDecoderBase* decoder_base,
|
|
FuriString* output) {
|
|
bool status = false;
|
|
|
|
if(decoder_base->protocol && decoder_base->protocol->decoder &&
|
|
decoder_base->protocol->decoder->get_string) {
|
|
decoder_base->protocol->decoder->get_string(decoder_base, output);
|
|
status = true;
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
bool subghz_protocol_decoder_base_serialize(
|
|
SubGhzProtocolDecoderBase* decoder_base,
|
|
FlipperFormat* flipper_format,
|
|
SubGhzPresetDefinition* preset) {
|
|
bool status = false;
|
|
|
|
if(decoder_base->protocol && decoder_base->protocol->decoder &&
|
|
decoder_base->protocol->decoder->serialize) {
|
|
status = decoder_base->protocol->decoder->serialize(decoder_base, flipper_format, preset);
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
bool subghz_protocol_decoder_base_deserialize(
|
|
SubGhzProtocolDecoderBase* decoder_base,
|
|
FlipperFormat* flipper_format) {
|
|
bool status = false;
|
|
|
|
if(decoder_base->protocol && decoder_base->protocol->decoder &&
|
|
decoder_base->protocol->decoder->deserialize) {
|
|
status = decoder_base->protocol->decoder->deserialize(decoder_base, flipper_format);
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
uint8_t subghz_protocol_decoder_base_get_hash_data(SubGhzProtocolDecoderBase* decoder_base) {
|
|
uint8_t hash = 0;
|
|
|
|
if(decoder_base->protocol && decoder_base->protocol->decoder &&
|
|
decoder_base->protocol->decoder->get_hash_data) {
|
|
hash = decoder_base->protocol->decoder->get_hash_data(decoder_base);
|
|
}
|
|
|
|
return hash;
|
|
}
|