Index: firmware/App/Controllers/Bubble.c =================================================================== diff -u -r152e924cfb7f4504d4df7ec44736f27b9257f36c -rec76cd7277fc01f63dc29328bb40da032b9ef83b --- firmware/App/Controllers/Bubble.c (.../Bubble.c) (revision 152e924cfb7f4504d4df7ec44736f27b9257f36c) +++ firmware/App/Controllers/Bubble.c (.../Bubble.c) (revision ec76cd7277fc01f63dc29328bb40da032b9ef83b) @@ -193,6 +193,7 @@ bubblesStatus[ bubble ].data = BUBBLE_DETECTED; } +#ifndef DISABLE_BUBBLE_ALARMS // Check status reading and act upon if ( BUBBLE_DETECTED == getBubbleStatus( bubble ) ) { @@ -235,6 +236,7 @@ clearAlarmCondition( ALARM_ID_HD_VENOUS_BUBBLE_DETECTED ); } } +#endif if ( TRUE == bubblesSelfTestRequested[ bubble ] ) { Index: firmware/App/Controllers/PresOccl.c =================================================================== diff -u -r1240b612f790f931825aba86ec37f37eccce9336 -rec76cd7277fc01f63dc29328bb40da032b9ef83b --- firmware/App/Controllers/PresOccl.c (.../PresOccl.c) (revision 1240b612f790f931825aba86ec37f37eccce9336) +++ firmware/App/Controllers/PresOccl.c (.../PresOccl.c) (revision ec76cd7277fc01f63dc29328bb40da032b9ef83b) @@ -51,7 +51,7 @@ #define VENOUS_PRESSURE_SELF_TEST_MAX ( 600.0 ) ///< Maximum self-test value for venous pressure sensor reading (in mmHg). #define VENOUS_PRESSURE_MIN_TEMP ( 0.0 ) ///< Minimum venous pressure sensor temperature. TODO - get from Systems -#define VENOUS_PRESSURE_MAX_TEMP ( 50.0 ) ///< Maximum venous pressure sensor temperature. TODO - get from Systems +#define VENOUS_PRESSURE_MAX_TEMP ( 80.0 ) ///< Maximum venous pressure sensor temperature. TODO - get from Systems #define PSI_TO_MMHG ( 51.7149 ) ///< Conversion factor for converting PSI to mmHg. Index: firmware/App/HDCommon.h =================================================================== diff -u -r7a754fc23436a42e61e60f66adf1cd0cc8b32ad6 -rec76cd7277fc01f63dc29328bb40da032b9ef83b --- firmware/App/HDCommon.h (.../HDCommon.h) (revision 7a754fc23436a42e61e60f66adf1cd0cc8b32ad6) +++ firmware/App/HDCommon.h (.../HDCommon.h) (revision ec76cd7277fc01f63dc29328bb40da032b9ef83b) @@ -81,6 +81,7 @@ #define ALLOW_1_MIN_TREATMENT_DURATION 1 // Allow user to change treatment duration to as low as 1 minute // #define DISABLE_SYRINGE_PUMP_ALARMS 1 // Disable some syringe pump alarms that are triggering intermittently // #define NO_PUMP_FLOW_LIMITS 1 // Allow any commanded flow rate for peristaltic pumps + #define DISABLE_BUBBLE_ALARMS 1 // Disable bubble alarms #include #include