auto-sync
This commit is contained in:
parent
3f8bf4d333
commit
316c1a6f2c
|
@ -146,7 +146,13 @@ typedef enum {
|
||||||
//P0117 Engine Coolant Temperature Circuit Low Input
|
//P0117 Engine Coolant Temperature Circuit Low Input
|
||||||
//P0118 Engine Coolant Temperature Circuit High Input
|
//P0118 Engine Coolant Temperature Circuit High Input
|
||||||
//P0119 Engine Coolant Temperature Circuit Intermittent
|
//P0119 Engine Coolant Temperature Circuit Intermittent
|
||||||
|
/**
|
||||||
|
* See also tpsErrorDetectionTooLow
|
||||||
|
*/
|
||||||
OBD_Throttle_Position_Sensor_Circuit_Malfunction = 120,
|
OBD_Throttle_Position_Sensor_Circuit_Malfunction = 120,
|
||||||
|
/**
|
||||||
|
* See also tpsErrorDetectionTooHigh
|
||||||
|
*/
|
||||||
OBD_Throttle_Position_Sensor_Range_Performance_Problem = 121,
|
OBD_Throttle_Position_Sensor_Range_Performance_Problem = 121,
|
||||||
//P0122 Throttle Position Sensor/Switch A Circuit Low Input
|
//P0122 Throttle Position Sensor/Switch A Circuit Low Input
|
||||||
//P0123 Throttle Position Sensor/Switch A Circuit High Input
|
//P0123 Throttle Position Sensor/Switch A Circuit High Input
|
||||||
|
|
|
@ -42,7 +42,7 @@ enable2ndByteCanID = false
|
||||||
|
|
||||||
; see PAGE_0_SIZE in C source code
|
; see PAGE_0_SIZE in C source code
|
||||||
; CONFIG_DEFINITION_START
|
; CONFIG_DEFINITION_START
|
||||||
; this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Wed Feb 15 10:33:44 EST 2017
|
; this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Fri Feb 17 20:09:10 EST 2017
|
||||||
|
|
||||||
pageSize = 16376
|
pageSize = 16376
|
||||||
page = 1
|
page = 1
|
||||||
|
@ -2040,6 +2040,8 @@ cmd_test_idle_valve = "w\x00\x17\x00\x01"
|
||||||
dialog = analogInputs, "Analog inputs"
|
dialog = analogInputs, "Analog inputs"
|
||||||
field = "!ECU reboot needed to apply these settings"
|
field = "!ECU reboot needed to apply these settings"
|
||||||
field = "TPS ADC input", tpsAdcChannel
|
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 = "!todo: move MAF channel to maf curve dialog"
|
||||||
field = "MAF ADC input", mafAdcChannel
|
field = "MAF ADC input", mafAdcChannel
|
||||||
field = "Baro ADC input", baroSensor_hwChannel
|
field = "Baro ADC input", baroSensor_hwChannel
|
||||||
|
|
|
@ -1972,6 +1972,8 @@ cmd_test_idle_valve = "w\x00\x17\x00\x01"
|
||||||
dialog = analogInputs, "Analog inputs"
|
dialog = analogInputs, "Analog inputs"
|
||||||
field = "!ECU reboot needed to apply these settings"
|
field = "!ECU reboot needed to apply these settings"
|
||||||
field = "TPS ADC input", tpsAdcChannel
|
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 = "!todo: move MAF channel to maf curve dialog"
|
||||||
field = "MAF ADC input", mafAdcChannel
|
field = "MAF ADC input", mafAdcChannel
|
||||||
field = "Baro ADC input", baroSensor_hwChannel
|
field = "Baro ADC input", baroSensor_hwChannel
|
||||||
|
|
|
@ -9,6 +9,7 @@ import com.rusefi.io.LinkManager;
|
||||||
import com.rusefi.io.tcp.TcpConnector;
|
import com.rusefi.io.tcp.TcpConnector;
|
||||||
import jssc.SerialPortList;
|
import jssc.SerialPortList;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
import java.util.concurrent.CountDownLatch;
|
import java.util.concurrent.CountDownLatch;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
|
@ -160,6 +161,7 @@ public class IoUtil {
|
||||||
}
|
}
|
||||||
String port = ports[ports.length - 1];
|
String port = ports[ports.length - 1];
|
||||||
System.out.println("Using last of " + ports.length + " port(s)");
|
System.out.println("Using last of " + ports.length + " port(s)");
|
||||||
|
System.out.println("All ports: " + Arrays.toString(ports));
|
||||||
return port;
|
return port;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue