mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-23 05:14:16 +03:00
merge fixes [ci skip]
This commit is contained in:
parent
7711b2daae
commit
b6644d7727
@ -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;
|
if(bit_lib_get_bits(protocol->data, 0, 6) != 0b111110) return false;
|
||||||
|
|
||||||
// Check always 0 parity on every 5th bit after preamble
|
// 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;
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// Start GProx II decode
|
// Start GProx II decode
|
||||||
bit_lib_copy_bits(protocol->decoded_data, 0, GPROXII_ENCODED_BIT_SIZE, protocol->data, 6);
|
bit_lib_copy_bits(protocol->decoded_data, 0, GPROXII_ENCODED_BIT_SIZE, protocol->data, 6);
|
||||||
|
Loading…
Reference in New Issue
Block a user