mirror of
https://github.com/merbanan/rtl_433.git
synced 2026-04-19 09:06:57 -04:00
minor: Fix Celsia-CZC1 typo
This commit is contained in:
@@ -110,7 +110,7 @@ static int celsia_czc1_decode(r_device *decoder, bitbuffer_t *bitbuffer)
|
||||
}
|
||||
|
||||
// Check if a 0x00 pair packet or a 0xf0 command packet
|
||||
if (b[2] != 0x00 && b[2] == 0xf0) {
|
||||
if (b[2] != 0x00 && b[2] != 0xf0) {
|
||||
decoder_log(decoder, 1, __func__, "Unknown packet type");
|
||||
return DECODE_FAIL_OTHER;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user