auto-sync
This commit is contained in:
parent
a797f12e9e
commit
3061999890
|
@ -146,7 +146,13 @@ typedef enum {
|
|||
//P0117 Engine Coolant Temperature Circuit Low Input
|
||||
//P0118 Engine Coolant Temperature Circuit High Input
|
||||
//P0119 Engine Coolant Temperature Circuit Intermittent
|
||||
/**
|
||||
* See also tpsErrorDetectionTooLow
|
||||
*/
|
||||
OBD_Throttle_Position_Sensor_Circuit_Malfunction = 120,
|
||||
/**
|
||||
* See also tpsErrorDetectionTooHigh
|
||||
*/
|
||||
OBD_Throttle_Position_Sensor_Range_Performance_Problem = 121,
|
||||
//P0122 Throttle Position Sensor/Switch A Circuit Low Input
|
||||
//P0123 Throttle Position Sensor/Switch A Circuit High Input
|
||||
|
|
|
@ -1972,6 +1972,8 @@ cmd_test_idle_valve = "w\x00\x17\x00\x01"
|
|||
dialog = analogInputs, "Analog inputs"
|
||||
field = "!ECU reboot needed to apply these settings"
|
||||
field = "TPS ADC input", tpsAdcChannel
|
||||
field = "TPS low value detection threshold", tpsErrorDetectionTooLow
|
||||
field = "TPS high value detection threshold", tpsErrorDetectionTooHigh
|
||||
field = "!todo: move MAF channel to maf curve dialog"
|
||||
field = "MAF ADC input", mafAdcChannel
|
||||
field = "Baro ADC input", baroSensor_hwChannel
|
||||
|
|
|
@ -9,6 +9,7 @@ import com.rusefi.io.LinkManager;
|
|||
import com.rusefi.io.tcp.TcpConnector;
|
||||
import jssc.SerialPortList;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.concurrent.CountDownLatch;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
|
@ -160,6 +161,7 @@ public class IoUtil {
|
|||
}
|
||||
String port = ports[ports.length - 1];
|
||||
System.out.println("Using last of " + ports.length + " port(s)");
|
||||
System.out.println("All ports: " + Arrays.toString(ports));
|
||||
return port;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue