SubGhz: add protocol Nice_Flo 20bit (#1983)

Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
Skorpionm 2022-11-23 12:28:44 +04:00 committed by GitHub
parent 41de5f3c52
commit cf5b87f82e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -138,9 +138,9 @@ bool subghz_protocol_encoder_nice_flo_deserialize(void* context, FlipperFormat*
FURI_LOG_E(TAG, "Deserialize error"); FURI_LOG_E(TAG, "Deserialize error");
break; break;
} }
if((instance->generic.data_count_bit != if((instance->generic.data_count_bit <
subghz_protocol_nice_flo_const.min_count_bit_for_found) && subghz_protocol_nice_flo_const.min_count_bit_for_found) ||
(instance->generic.data_count_bit != (instance->generic.data_count_bit >
2 * subghz_protocol_nice_flo_const.min_count_bit_for_found)) { 2 * subghz_protocol_nice_flo_const.min_count_bit_for_found)) {
FURI_LOG_E(TAG, "Wrong number of bits in key"); FURI_LOG_E(TAG, "Wrong number of bits in key");
break; break;
@ -297,9 +297,9 @@ bool subghz_protocol_decoder_nice_flo_deserialize(void* context, FlipperFormat*
if(!subghz_block_generic_deserialize(&instance->generic, flipper_format)) { if(!subghz_block_generic_deserialize(&instance->generic, flipper_format)) {
break; break;
} }
if((instance->generic.data_count_bit != if((instance->generic.data_count_bit <
subghz_protocol_nice_flo_const.min_count_bit_for_found) && subghz_protocol_nice_flo_const.min_count_bit_for_found) ||
(instance->generic.data_count_bit != (instance->generic.data_count_bit >
2 * subghz_protocol_nice_flo_const.min_count_bit_for_found)) { 2 * subghz_protocol_nice_flo_const.min_count_bit_for_found)) {
FURI_LOG_E(TAG, "Wrong number of bits in key"); FURI_LOG_E(TAG, "Wrong number of bits in key");
break; break;