initial tests made using Terry's stand with a 2500psi sensor
[fw/altos] / altoslib / AltosEepromFireTwo.java
index 2e464f98acf78bedaf0effb49d0d5d577b14f20a..d83f3452008e5022f7fc7821b71c73c75ce22f1b 100644 (file)
@@ -65,7 +65,7 @@ public class AltosEepromFireTwo extends AltosEeprom {
                if (v < 0.5) v = 0.5;
                if (v > 4.5) v = 4.5;
 
-               double  psi = (v - 0.5) / 4.0 * 1600.0;
+               double  psi = (v - 0.5) / 4.0 * 2500.0;
                return AltosConvert.psi_to_pa(psi);
        }