mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
improved debug for iBreeze crash
This commit is contained in:
parent
e7ad822b4d
commit
97a5da3c43
@ -291,8 +291,9 @@ void FlowParser::openFlow(Session *session, EventList *flow)
|
||||
|
||||
// Make sure we won't overflow internal buffers
|
||||
if (m_samples > max_filter_buf_size_entries) {
|
||||
qDebug() << "Error: Sample size exceeds max_filter_buf_size_entries in FlowParser::openFlow().. Capping!!! "
|
||||
<< QDateTime::fromMSecsSinceEpoch(session->realFirst()).toString();
|
||||
qDebug() << "Error: Sample size exceeds max_filter_buf_size_entries in FlowParser::openFlow().. Capping!!! \n"
|
||||
<< QDateTime::fromMSecsSinceEpoch(session->realFirst()).toString()
|
||||
<< " " << m_samples << " > " << max_filter_buf_size_entries; ;
|
||||
m_samples = max_filter_buf_size_entries;
|
||||
}
|
||||
|
||||
@ -1290,7 +1291,7 @@ int calcLeaks(Session *session)
|
||||
|
||||
// Choose the formula for calculating mask leakage as a function of pressure.
|
||||
LeakCalculator* calc = new ProfileLeakCalculator(p_profile);
|
||||
|
||||
|
||||
// Prefer IPAPSet/PressureSet for devices (PRS1) that use these, since they use Pressure to report averages.
|
||||
ChannelID pressure_channel = CPAP_Pressure; // default
|
||||
for (auto & ch : { CPAP_IPAPSet, CPAP_IPAP, CPAP_PressureSet }) {
|
||||
@ -1323,7 +1324,7 @@ int calcLeaks(Session *session)
|
||||
leak->AddEvent(time, val);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
totalEvents += leak->count();
|
||||
}
|
||||
|
||||
|
@ -87,7 +87,7 @@ bool operator<(const BreathPeak &p1, const BreathPeak &p2);
|
||||
|
||||
const int num_filter_buffers = 2;
|
||||
|
||||
const int max_filter_buf_size_entries = 2097152 ;
|
||||
const int max_filter_buf_size_entries = 0x20C000 ; // was 2097152 == 0x200000;
|
||||
const int max_filter_buf_size_malloc = max_filter_buf_size_entries * sizeof(EventDataType);
|
||||
|
||||
//! \brief Class to process Flow Rate waveform data
|
||||
|
Loading…
Reference in New Issue
Block a user