From cd546cf932e97baa6566c2332dbdbd931a52cd55 Mon Sep 17 00:00:00 2001 From: Andrey G Date: Mon, 14 Dec 2020 23:33:27 +0300 Subject: [PATCH] TLE8888: temp fix of #2065 (#2079) --- firmware/hw_layer/drivers/gpio/tle8888.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/hw_layer/drivers/gpio/tle8888.c b/firmware/hw_layer/drivers/gpio/tle8888.c index a9e8f8ac8c..55133bb6ab 100644 --- a/firmware/hw_layer/drivers/gpio/tle8888.c +++ b/firmware/hw_layer/drivers/gpio/tle8888.c @@ -847,7 +847,7 @@ static THD_FUNCTION(tle8888_driver_thread, p) { bool wd_happy = chip->wd_happy; /* update outputs only if WD is happy */ - if (wd_happy) { + if ((wd_happy) || (1)) { ret = tle8888_update_output(chip); if (ret) { /* set state to TLE8888_FAILED? */