mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-25 14:00:20 +00:00
merge fixes [ci skip]
This commit is contained in:
parent
7711b2daae
commit
b6644d7727
1 changed files with 2 additions and 1 deletions
|
@ -129,8 +129,9 @@ static bool protocol_gproxii_can_be_decoded(ProtocolGProxII* protocol) {
|
|||
if(bit_lib_get_bits(protocol->data, 0, 6) != 0b111110) return false;
|
||||
|
||||
// Check always 0 parity on every 5th bit after preamble
|
||||
if(!bit_lib_test_parity(protocol->data, 6, GPROXII_ENCODED_BIT_SIZE, BitLibParityAlways0, 5))
|
||||
if(!bit_lib_test_parity(protocol->data, 6, GPROXII_ENCODED_BIT_SIZE, BitLibParityAlways0, 5)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Start GProx II decode
|
||||
bit_lib_copy_bits(protocol->decoded_data, 0, GPROXII_ENCODED_BIT_SIZE, protocol->data, 6);
|
||||
|
|
Loading…
Reference in a new issue