Index: firmware/App/Drivers/PressureSensor.c =================================================================== diff -u -reaa0ce5fe4890d9c7ff14d14828ea90209c1ad97 -r66b5d24b111859a597259a2118f59a90da76e7f1 --- firmware/App/Drivers/PressureSensor.c (.../PressureSensor.c) (revision eaa0ce5fe4890d9c7ff14d14828ea90209c1ad97) +++ firmware/App/Drivers/PressureSensor.c (.../PressureSensor.c) (revision 66b5d24b111859a597259a2118f59a90da76e7f1) @@ -148,14 +148,14 @@ if ( getTestConfigStatus( TEST_CONFIG_BETA_HW ) != TRUE ) { presMinPSI = PRES_MIN_PSI_ALPHA; - currentPressureReadings[ M1_PRES ].data = convertPressureReading( getFPGAM1PresRawPressure(), presMinPSI, HIGH_PRES_MAX_PSI ); - currentPressureReadings[ M3_PRES ].data = convertPressureReading( getFPGAM3PresRawPressure(), presMinPSI, HIGH_PRES_MAX_PSI ); + //currentPressureReadings[ M1_PRES ].data = convertPressureReading( getFPGAM1PresRawPressure(), presMinPSI, HIGH_PRES_MAX_PSI ); + //currentPressureReadings[ M3_PRES ].data = convertPressureReading( getFPGAM3PresRawPressure(), presMinPSI, HIGH_PRES_MAX_PSI ); currentPressureReadings[ D9_PRES ].data = convertPressureReading( getFPGAD9PresRawPressure(), presMinPSI, HIGH_PRES_MAX_PSI ); } else { - currentPressureReadings[ M1_PRES ].data = convertPressureReading( getFPGAM1PresRawPressure(), presMinPSI, LOW_PRES_MAX_PSI ); - currentPressureReadings[ M3_PRES ].data = convertPressureReading( getFPGAM3PresRawPressure(), presMinPSI, LOW_PRES_MAX_PSI ); + //currentPressureReadings[ M1_PRES ].data = convertPressureReading( getFPGAM1PresRawPressure(), presMinPSI, LOW_PRES_MAX_PSI ); + //currentPressureReadings[ M3_PRES ].data = convertPressureReading( getFPGAM3PresRawPressure(), presMinPSI, LOW_PRES_MAX_PSI ); currentPressureReadings[ D9_PRES ].data = convertPressureReading( getFPGAD9PresRawPressure(), presMinPSI, LOW_PRES_MAX_PSI ); }