auto-sync

This commit is contained in:
rusEfi 2016-10-13 00:03:04 -04:00
parent 1af1aa3d08
commit 98b6e2857d
5 changed files with 5 additions and 3 deletions

View File

@ -1704,7 +1704,7 @@ typedef enum {
CUSTOM_OBD_34 = 6034,
CUSTOM_OBD_35 = 6035,
CUSTOM_SYNC_ERROR = 6036,
CUSTOM_OBD_37 = 6037,
CUSTOM_SYNC_ERROR_2 = 6037,
CUSTOM_OBD_38 = 6038,
CUSTOM_OBD_39 = 6039,

View File

@ -464,7 +464,7 @@ static void setCrankingFuel(float timeMs) {
static void setGlobalTriggerAngleOffset(float value) {
if (cisnan(value)) {
warning(CUSTOM_OBD_37, "Invalid argument");
warning(CUSTOM_ERR_6121, "Invalid argument");
return;
}
engineConfiguration->globalTriggerAngleOffset = value;

View File

@ -259,6 +259,7 @@ void TriggerState::decodeTriggerEvent(trigger_event_e const signal, efitime_t no
enginePins.triggerDecoderErrorPin.setValue(isDecodingError);
if (isDecodingError) {
warning(CUSTOM_SYNC_ERROR_2, "trigger not happy");
lastDecodingErrorTime = getTimeNowNt();
someSortOfTriggerError = true;

View File

@ -38,7 +38,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
* @see EngineSnifferPanel
*/
public class Launcher {
public static final int CONSOLE_VERSION = 20161009;
public static final int CONSOLE_VERSION = 20161012;
public static final boolean SHOW_STIMULATOR = false;
private static final String TAB_INDEX = "main_tab";
protected static final String PORT_KEY = "port";

View File

@ -37,6 +37,7 @@ public class SensorLogger {
Sensor.TIMING,
Sensor.FUEL_BASE,
Sensor.actualLastInjection,
Sensor.deltaTps,
Sensor.tpsAccelFuel,