Update 2 files

- /oscar/SleepLib/loader_plugins/edfparser.h
- /oscar/SleepLib/loader_plugins/resmed_loader.cpp
This commit is contained in:
Steve Gearhart 2023-10-13 23:57:09 +00:00
parent cc0bc97355
commit 1097cce6fa
2 changed files with 3 additions and 2 deletions

View File

@ -27,7 +27,7 @@ const char AnnoDurMark = 21;
const char AnnoEnd = 0; const char AnnoEnd = 0;
// EDFType is used by all the edf loaders - resmed and sleepstyle, so far // EDFType is used by all the edf loaders - resmed and sleepstyle, so far
enum EDFType { EDF_UNKNOWN, EDF_BRP, EDF_PLD, EDF_SAD, EDF_EVE, EDF_CSL, EDF_AEV, EDF_RT }; enum EDFType { EDF_UNKNOWN, EDF_BRP, EDF_PLD, EDF_SAD, EFF_SA2, EDF_EVE, EDF_CSL, EDF_AEV, EDF_RT };
/*! \struct EDFHeader /*! \struct EDFHeader
\brief Represents the EDF+ header structure, used as a place holder while processing the text data. \brief Represents the EDF+ header structure, used as a place holder while processing the text data.

View File

@ -2182,7 +2182,7 @@ EDFType lookupEDFType(const QString & filename)
return EDF_BRP; return EDF_BRP;
} else if (text == "PLD") { } else if (text == "PLD") {
return EDF_PLD; return EDF_PLD;
} else if (text == "SAD") { } else if ((text == "SAD") || (test == "SA2")){
return EDF_SAD; return EDF_SAD;
} else if (text == "CSL") { } else if (text == "CSL") {
return EDF_CSL; return EDF_CSL;
@ -2752,6 +2752,7 @@ void ResDayTask::run()
loader->LoadPLD(sess, fullpath); loader->LoadPLD(sess, fullpath);
break; break;
case EDF_SAD: case EDF_SAD:
case EDF_SA2:
loader->LoadSAD(sess, fullpath); loader->LoadSAD(sess, fullpath);
break; break;
case EDF_EVE: case EDF_EVE: