From 766ff2e565aaf12ec2270bb9018c087dc74eeba5 Mon Sep 17 00:00:00 2001 From: vidarino Date: Mon, 22 Aug 2022 12:40:36 +0200 Subject: [PATCH] minor: Fix emos_e6016 reset limit (#2156) Slightly increased reset limit for improved detection. --- src/devices/emos_e6016.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/emos_e6016.c b/src/devices/emos_e6016.c index 392a0a4c..c459e77e 100644 --- a/src/devices/emos_e6016.c +++ b/src/devices/emos_e6016.c @@ -144,7 +144,7 @@ r_device emos_e6016 = { .short_width = 280, .long_width = 796, .gap_limit = 3000, - .reset_limit = 804, + .reset_limit = 850, .sync_width = 1836, .decode_fn = &emos_e6016_decode, .fields = output_fields,