From f752bb528d71ced805f9c2b8d533c5eb3563b438 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Wed, 3 Apr 2024 16:35:53 +0200 Subject: [PATCH] change heart beat to two seconds --- src/kds_s2000w_heartbeat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kds_s2000w_heartbeat.c b/src/kds_s2000w_heartbeat.c index af6c87b..04241e4 100644 --- a/src/kds_s2000w_heartbeat.c +++ b/src/kds_s2000w_heartbeat.c @@ -6,7 +6,7 @@ pthread_t pwait; void* _wait_thread(void *args) { - sleep(1); + sleep(2); return NULL; } -- 2.39.5