mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Update 2 files
- /oscar/SleepLib/loader_plugins/edfparser.h - /oscar/SleepLib/loader_plugins/resmed_loader.cpp
This commit is contained in:
parent
cc0bc97355
commit
1097cce6fa
@ -27,7 +27,7 @@ const char AnnoDurMark = 21;
|
||||
const char AnnoEnd = 0;
|
||||
|
||||
// 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
|
||||
\brief Represents the EDF+ header structure, used as a place holder while processing the text data.
|
||||
|
@ -2182,7 +2182,7 @@ EDFType lookupEDFType(const QString & filename)
|
||||
return EDF_BRP;
|
||||
} else if (text == "PLD") {
|
||||
return EDF_PLD;
|
||||
} else if (text == "SAD") {
|
||||
} else if ((text == "SAD") || (test == "SA2")){
|
||||
return EDF_SAD;
|
||||
} else if (text == "CSL") {
|
||||
return EDF_CSL;
|
||||
@ -2752,6 +2752,7 @@ void ResDayTask::run()
|
||||
loader->LoadPLD(sess, fullpath);
|
||||
break;
|
||||
case EDF_SAD:
|
||||
case EDF_SA2:
|
||||
loader->LoadSAD(sess, fullpath);
|
||||
break;
|
||||
case EDF_EVE:
|
||||
|
Loading…
Reference in New Issue
Block a user