Index: firmware/App/Monitors/Bubbles.c =================================================================== diff -u -r40f8c172cd8770c30c09637b6037ec687d0c11a9 -r1e5bc8dd7ce3ba97104df3d1b12f98d4a4f97234 --- firmware/App/Monitors/Bubbles.c (.../Bubbles.c) (revision 40f8c172cd8770c30c09637b6037ec687d0c11a9) +++ firmware/App/Monitors/Bubbles.c (.../Bubbles.c) (revision 1e5bc8dd7ce3ba97104df3d1b12f98d4a4f97234) @@ -7,8 +7,8 @@ * * @file Bubbles.c * -* @author (last) Jashwant Gantyada -* @date (last) 12-Feb-2026 +* @author (last) Praneeth Bunne +* @date (last) 13-Mar-2026 * * @author (original) Sean Nash * @date (original) 11-Sep-2024 @@ -21,6 +21,7 @@ #include "Messaging.h" #include "OperationModes.h" #include "TaskPriority.h" +#include "TestSupport.h" #include "Timers.h" /** @@ -223,7 +224,11 @@ // Check for venous bubble alarm if enabled. if ( BUBBLE_DETECTED == getBubbleDetectedState( bubble ) ) { - activateAlarmNoData( ALARM_ID_TD_VENOUS_BUBBLE_DETECTED ); + //Skip venous bubble alarm when no tubing set is installed + if ( TRUE != getTestConfigStatus(TEST_CONFIG_TESTING_WITHOUT_TUBING_SET) ) + { + activateAlarmNoData( ALARM_ID_TD_VENOUS_BUBBLE_DETECTED ); + } } }