From 5c26d60a5808f5e6b81113c2aaf771e667d344dc Mon Sep 17 00:00:00 2001 From: "Ryan@WorkStation" Date: Wed, 20 Mar 2024 18:37:26 -0400 Subject: [PATCH] update ACQ status every 1 sec instead of 2 sec --- CustomThreads.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CustomThreads.h b/CustomThreads.h index 01b5c83..00aab69 100644 --- a/CustomThreads.h +++ b/CustomThreads.h @@ -72,7 +72,7 @@ public: } clock_gettime(CLOCK_REALTIME, &t2); - if( t2.tv_sec - t1.tv_sec > 2 ){ + if( t2.tv_sec - t1.tv_sec > 1 ){ digiMTX[ID].lock(); digi->ReadACQStatus(); digiMTX[ID].unlock();