Index: firmware/App/Controllers/BloodLeak.c =================================================================== diff -u -r40f46e196349e3dd730048a354df8bbb2e40407d -r667feab319b14681a0330a715da7a1ba930b518d --- firmware/App/Controllers/BloodLeak.c (.../BloodLeak.c) (revision 40f46e196349e3dd730048a354df8bbb2e40407d) +++ firmware/App/Controllers/BloodLeak.c (.../BloodLeak.c) (revision 667feab319b14681a0330a715da7a1ba930b518d) @@ -414,12 +414,10 @@ } else { -#ifndef IGNORE_BLOOD_LEAK_ALARM if ( getSoftwareConfigStatus( SW_CONFIG_DISABLE_BLOOD_LEAK_ALARM ) != SW_CONFIG_ENABLE_VALUE ) { activateAlarmNoData( ALARM_ID_HD_BLOOD_LEAK_SENSOR_SET_POINT_SET_FAILURE ); } -#endif } } else @@ -524,12 +522,10 @@ { if ( TRUE == didTimeout( bloodLeakZeroStartTime, BLOOD_LEAK_TIMEOUT_MS ) ) { -#ifndef IGNORE_BLOOD_LEAK_ALARM if ( getSoftwareConfigStatus( SW_CONFIG_DISABLE_BLOOD_LEAK_ALARM ) != SW_CONFIG_ENABLE_VALUE ) { activateAlarmNoData( ALARM_ID_HD_BLOOD_LEAK_FAULT ); } -#endif } } @@ -601,12 +597,10 @@ if ( ++bloodLeakPersistenceCtr > BLOOD_LEAK_PERSISTENCE ) { bloodLeakPersistenceCtr = BLOOD_LEAK_PERSISTENCE; -#ifndef IGNORE_BLOOD_LEAK_ALARM if ( getSoftwareConfigStatus( SW_CONFIG_DISABLE_BLOOD_LEAK_ALARM ) != SW_CONFIG_ENABLE_VALUE ) { activateAlarmNoData( ALARM_ID_HD_BLOOD_LEAK_DETECTED ); } -#endif } } else // Blood leak not detected @@ -617,12 +611,10 @@ } else { -#ifndef IGNORE_BLOOD_LEAK_ALARM if ( getSoftwareConfigStatus( SW_CONFIG_DISABLE_BLOOD_LEAK_ALARM ) != SW_CONFIG_ENABLE_VALUE ) { clearAlarmCondition( ALARM_ID_HD_BLOOD_LEAK_DETECTED ); } -#endif } }