This commit is contained in:
r3df0xx
2022-04-26 19:56:49 +03:00
parent 0e9334d8b0
commit e17c8fc0a7
2 changed files with 1 additions and 14 deletions

View File

@@ -247,11 +247,6 @@ bool subghz_protocol_encoder_faac_slh_deserialize(void* context, FlipperFormat*
flipper_format_read_uint32(
flipper_format, "Repeat", (uint32_t*)&instance->encoder.repeat, 1);
if(!flipper_format_read_uint32(flipper_format, "SEED", (uint32_t*)&instance->generic.seed, 4)) {
FURI_LOG_E(TAG, "Missing SEED");
break;
}
subghz_protocol_encoder_faac_slh_get_upload(instance);
if(!flipper_format_rewind(flipper_format)) {
@@ -464,14 +459,6 @@ bool subghz_protocol_decoder_faac_slh_deserialize(void* context, FlipperFormat*
FURI_LOG_E(TAG, "Deserialize error");
break;
}
if(!flipper_format_rewind(flipper_format)) {
FURI_LOG_E(TAG, "Rewind error");
break;
}
if(!flipper_format_read_uint32(flipper_format, "SEED", (uint32_t*)&instance->generic.seed, 4)) {
FURI_LOG_E(TAG, "Missing SEED");
break;
}
res = true;
} while(false);