From 9134093af66de9bc5e03c99c9dad74022a74ef99 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Mon, 20 Sep 2021 13:43:26 -0400 Subject: [PATCH] Update Viatom warnings based on additional test samples. --- oscar/SleepLib/loader_plugins/viatom_loader.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/oscar/SleepLib/loader_plugins/viatom_loader.cpp b/oscar/SleepLib/loader_plugins/viatom_loader.cpp index 62567260..b2c768b7 100644 --- a/oscar/SleepLib/loader_plugins/viatom_loader.cpp +++ b/oscar/SleepLib/loader_plugins/viatom_loader.cpp @@ -290,6 +290,7 @@ bool ViatomFile::ParseHeader() return false; break; } + CHECK_VALUE(sig, 3); // We have only a single sample of 5, without a corresponding PDF. We need more samples. if ((year < 2015 || year > 2059) || (month < 1 || month > 12) || (day < 1 || day > 31) || (hour > 23) || (min > 59) || (sec > 59)) { @@ -339,7 +340,7 @@ bool ViatomFile::ParseHeader() //int time_under_90pct = header[22] | (header[23] << 8); // in seconds //int events_under_90pct = header[24]; // number of distinct events //float o2_score = header[25] * 0.1; - CHECK_VALUE(header[26], 0); + CHECK_VALUES(header[26], 0, 4); // 4 has been seen only once CHECK_VALUE(header[27], 0); CHECK_VALUE(header[28], 0); CHECK_VALUE(header[29], 0);