From 93723bb7b183b0a5404fae1e48b5bdb5c7906a77 Mon Sep 17 00:00:00 2001 From: Maurice ONeal Date: Sat, 18 Mar 2023 21:08:40 -0400 Subject: [PATCH] v2.0.t11 also removed moDetect() loop for debugging. --- src/common.h | 2 +- src/main.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common.h b/src/common.h index ae8a27f..0a382b4 100644 --- a/src/common.h +++ b/src/common.h @@ -38,7 +38,7 @@ using namespace std; using namespace std::filesystem; using namespace std::chrono; -#define APP_VER "2.0.t11" +#define APP_VER "2.0.t12" #define APP_NAME "Motion Watch" #define REC_LOG_NAME "rec_log_lines.html" #define DET_LOG_NAME "det_log_lines.html" diff --git a/src/main.cpp b/src/main.cpp index 157fbf4..055a27a 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -196,13 +196,13 @@ int main(int argc, char** argv) auto thr1 = thread(recLoop, &sharedRes); auto thr2 = thread(upkeep, &sharedRes); - auto thr3 = thread(detectMo, &sharedRes); + //auto thr3 = thread(detectMo, &sharedRes); //auto thr4 = thread(eventLoop, &sharedRes); auto thr5 = thread(schLoop, &sharedRes); thr1.join(); thr2.join(); - thr3.join(); + //thr3.join(); //thr4.join(); thr5.join();