Merge branch 'master' into WIP

This commit is contained in:
ArieKlerk 2021-12-04 19:59:32 +01:00
commit 994f44f007
6 changed files with 41 additions and 4 deletions

View File

@ -0,0 +1,9 @@
#! /bin/bash
set -e
#
# delete all the folder not deleted by the purge command
# at the beginning, there was
# application name
appli_name="OSCAR_beta"

View File

@ -0,0 +1,7 @@
#
# delete all the folder not deleted by the purge command
# now, application name
appli_name="OSCAR-test"

View File

@ -0,0 +1,10 @@
#! /bin/bash
set -e
#
# modify by untoutseul05 to search local name for Desktop Folder
# the package now suits the fhs
# application name
appli_name="OSCAR-test"

View File

@ -112,7 +112,7 @@ if [[ -n ${PRERELEASE} && -z ${RC} ]] ; then
post_rem="clean_rm-result-NN-test.sh"
else
post_inst="ln_usrbin-result-NN.sh"
pre_rem="rm_usrbin-result.sh"
pre_rem="rm_usrbin-result-NN.sh"
post_rem="clean_rm-result-NN.sh"
fi

View File

@ -0,0 +1,9 @@
#! /bin/bash
#
# no error is permitted
set -e
# application name
appli_name="OSCAR-test"

View File

@ -1068,10 +1068,12 @@ bool PRS1DataChunk::ParseSummaryF5V3(void)
case 9: // new to F5V3 vs. F0V6, comes right after settings, before mask on?
CHECK_VALUE(data[pos], 0);
CHECK_VALUE(data[pos+1], 1);
CHECK_VALUE(data[pos+2], 0);
CHECK_VALUES(data[pos+2], 0, 4); // Apnea Alarm, 0 = off, 4 = 40
CHECK_VALUE(data[pos+3], 1);
CHECK_VALUE(data[pos+4], 1);
CHECK_VALUE(data[pos+5], 0);
if (data[pos+5] > 3) {
UNEXPECTED_VALUE(data[pos+5], "0-3"); // Low Minute Ventilation Alarm, 0 = off, 1-3 = 1-3
}
CHECK_VALUE(data[pos+6], 2);
CHECK_VALUE(data[pos+7], 1);
@ -1262,7 +1264,7 @@ bool PRS1DataChunk::ParseSettingsF5V3(const unsigned char* data, int size)
breath_rate = data[pos+1];
timed_inspiration = data[pos+2];
if (breath_rate < 4 || breath_rate > 16) UNEXPECTED_VALUE(breath_rate, "4-16");
if (timed_inspiration < 12 || timed_inspiration > 25) UNEXPECTED_VALUE(timed_inspiration, "12-25");
if (timed_inspiration < 12 || timed_inspiration > 30) UNEXPECTED_VALUE(timed_inspiration, "12-30");
this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_BACKUP_BREATH_MODE, PRS1Backup_Fixed));
this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_BACKUP_BREATH_RATE, breath_rate)); // BPM
this->AddEvent(new PRS1ScaledSettingEvent(PRS1_SETTING_BACKUP_TIMED_INSPIRATION, timed_inspiration, 0.1));