Index: firmware/App/Controllers/SyringePump.c =================================================================== diff -u -r44bd54e0202a15a0e38d7ccacd97669d0a14ab3c -r21ba197508c6498ea0c39f495526f4acd947df1e --- firmware/App/Controllers/SyringePump.c (.../SyringePump.c) (revision 44bd54e0202a15a0e38d7ccacd97669d0a14ab3c) +++ firmware/App/Controllers/SyringePump.c (.../SyringePump.c) (revision 21ba197508c6498ea0c39f495526f4acd947df1e) @@ -1101,7 +1101,7 @@ clearAlarmCondition( ALARM_ID_HD_SYRINGE_PUMP_SYRINGE_REMOVED ); } // If no syringe detected and detection is required, trigger alarm condition - else if ( ( FALSE == isSyringeDetected() ) && ( TRUE == requireSyringeDetection ) ) + else if ( FALSE == isSyringeDetected() ) { activateAlarmNoData( ALARM_ID_HD_SYRINGE_PUMP_SYRINGE_REMOVED ); } Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -r8d28db49d2814645c048883053ad06a27bf294f6 -r21ba197508c6498ea0c39f495526f4acd947df1e --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 8d28db49d2814645c048883053ad06a27bf294f6) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 21ba197508c6498ea0c39f495526f4acd947df1e) @@ -1220,7 +1220,7 @@ } // Handle any test messages if tester has logged in successfully - if ( ( msgID > MSG_ID_FIRST_TESTER_MESSAGE ) && ( msgID <= END_OF_MSG_IDS ) && ( TRUE == isTestingActivated() ) ) + if ( ( msgID > MSG_ID_FIRST_TESTER_MESSAGE ) && ( TRUE == isTestingActivated() ) ) { switch ( msgID ) {