From 10231462f2a9d518028246669cafdb285843fd44 Mon Sep 17 00:00:00 2001 From: Bryce Johnson Date: Mon, 30 Sep 2024 21:57:17 -0600 Subject: [PATCH] Update fineoffset_ws90.c to longer length --- src/devices/fineoffset_ws90.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/fineoffset_ws90.c b/src/devices/fineoffset_ws90.c index af2cd5432..422b0bfb8 100644 --- a/src/devices/fineoffset_ws90.c +++ b/src/devices/fineoffset_ws90.c @@ -63,7 +63,7 @@ static int fineoffset_ws90_decode(r_device *decoder, bitbuffer_t *bitbuffer) uint8_t b[32]; // Validate package, WS90 nominal size is 345 bit periods - if (bitbuffer->bits_per_row[0] < 168 || bitbuffer->bits_per_row[0] > 400) { + if (bitbuffer->bits_per_row[0] < 168 || bitbuffer->bits_per_row[0] > 500) { decoder_logf_bitbuffer(decoder, 2, __func__, bitbuffer, "abort length" ); return DECODE_ABORT_LENGTH; }