Index: firmware/App/Controllers/PresOccl.c =================================================================== diff -u -r4f3b9e168915ab13dfcdc74462d7142115cc2d57 -r17c0be2f41c52e631be4704a3f7e6f1f6710d8f8 --- firmware/App/Controllers/PresOccl.c (.../PresOccl.c) (revision 4f3b9e168915ab13dfcdc74462d7142115cc2d57) +++ firmware/App/Controllers/PresOccl.c (.../PresOccl.c) (revision 17c0be2f41c52e631be4704a3f7e6f1f6710d8f8) @@ -96,7 +96,6 @@ #define CARTRIDGE_LOADED_THRESHOLD 5000 ///< Threshold above which a cartridge is considered loaded. #define MIN_OCCLUSION_COUNTS 2000 ///< Minimum occlusion sensor reading for range check. -#define MAX_OCCLUSION_COUNTS 32766 ///< Maximum occlusion sensor reading for range check. #define OCCLUSION_CARTRIDGE_LOADED_PRESSURE_READING_MAX 24500 ///< Occlusion sensors maximum pressure reading limit when cartridge is considered loaded. #define EMPTY_SALINE_BAG_THRESHOLD_MMHG -300.0F ///< Threshold below which the saline bag is considered empty (in mmHg). @@ -789,7 +788,7 @@ static void checkOcclusions( void ) { U32 bpOccl = getMeasuredBloodPumpOcclusion(); - BOOL outOfRange = ( bpOccl < MIN_OCCLUSION_COUNTS || bpOccl > MAX_OCCLUSION_COUNTS ? TRUE : FALSE ); + BOOL outOfRange = ( bpOccl < MIN_OCCLUSION_COUNTS ? TRUE : FALSE ); #ifndef _RELEASE_ if( HW_CONFIG_BETA == getHardwareConfigStatus() )