#3 - update signal for serialize/deserialize
This commit is contained in:
parent
885c465b44
commit
435aad3ecf
@ -218,7 +218,7 @@ uint8_t subghz_protocol_decoder_x10_get_hash_data(void* context) {
|
||||
&instance->decoder, (instance->decoder.decode_count_bit / 8) + 1);
|
||||
}
|
||||
|
||||
bool subghz_protocol_decoder_x10_serialize(
|
||||
SubGhzProtocolStatus subghz_protocol_decoder_x10_serialize(
|
||||
void* context,
|
||||
FlipperFormat* flipper_format,
|
||||
SubGhzRadioPreset* preset) {
|
||||
@ -227,7 +227,8 @@ bool subghz_protocol_decoder_x10_serialize(
|
||||
return subghz_block_generic_serialize(&instance->generic, flipper_format, preset);
|
||||
}
|
||||
|
||||
bool subghz_protocol_decoder_x10_deserialize(void* context, FlipperFormat* flipper_format) {
|
||||
SubGhzProtocolStatus
|
||||
subghz_protocol_decoder_x10_deserialize(void* context, FlipperFormat* flipper_format) {
|
||||
furi_assert(context);
|
||||
SubGhzProtocolDecoderX10* instance = context;
|
||||
bool ret = false;
|
||||
|
@ -59,9 +59,9 @@ uint8_t subghz_protocol_decoder_x10_get_hash_data(void* context);
|
||||
* @param context Pointer to a SubGhzProtocolDecoderX10 instance
|
||||
* @param flipper_format Pointer to a FlipperFormat instance
|
||||
* @param preset The modulation on which the signal was received, SubGhzRadioPreset
|
||||
* @return true On success
|
||||
* @return SubGhzProtocolStatus
|
||||
*/
|
||||
bool subghz_protocol_decoder_x10_serialize(
|
||||
SubGhzProtocolStatus subghz_protocol_decoder_x10_serialize(
|
||||
void* context,
|
||||
FlipperFormat* flipper_format,
|
||||
SubGhzRadioPreset* preset);
|
||||
@ -70,9 +70,10 @@ bool subghz_protocol_decoder_x10_serialize(
|
||||
* Deserialize data SubGhzProtocolDecoderX10.
|
||||
* @param context Pointer to a SubGhzProtocolDecoderX10 instance
|
||||
* @param flipper_format Pointer to a FlipperFormat instance
|
||||
* @return true On success
|
||||
* @return SubGhzProtocolStatus
|
||||
*/
|
||||
bool subghz_protocol_decoder_x10_deserialize(void* context, FlipperFormat* flipper_format);
|
||||
SubGhzProtocolStatus
|
||||
subghz_protocol_decoder_x10_deserialize(void* context, FlipperFormat* flipper_format);
|
||||
|
||||
/**
|
||||
* Getting a textual representation of the received data.
|
||||
|
Loading…
Reference in New Issue
Block a user