auto-sync

This commit is contained in:
rusEfi 2017-02-17 21:03:22 -05:00
parent 3f8bf4d333
commit 316c1a6f2c
4 changed files with 13 additions and 1 deletions

View File

@ -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

View File

@ -42,7 +42,7 @@ enable2ndByteCanID = false
; see PAGE_0_SIZE in C source code
; 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
page = 1
@ -2040,6 +2040,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

View File

@ -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

View File

@ -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;
}