Index: firmware/App/Monitors/Bubbles.c =================================================================== diff -u -rc928c71eb17ba997c2f045cdf00fc2d84120a7d8 -r539f3837b28f2c3998b559aae085eb8fd872e334 --- firmware/App/Monitors/Bubbles.c (.../Bubbles.c) (revision c928c71eb17ba997c2f045cdf00fc2d84120a7d8) +++ firmware/App/Monitors/Bubbles.c (.../Bubbles.c) (revision 539f3837b28f2c3998b559aae085eb8fd872e334) @@ -7,8 +7,8 @@ * * @file Bubbles.c * -* @author (last) Sean Nash -* @date (last) 29-Aug-2025 +* @author (last) Jashwant Gantyada +* @date (last) 12-Feb-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 ); + } } }