auto-sync
This commit is contained in:
parent
1af1aa3d08
commit
98b6e2857d
|
@ -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,
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -37,6 +37,7 @@ public class SensorLogger {
|
|||
Sensor.TIMING,
|
||||
|
||||
Sensor.FUEL_BASE,
|
||||
Sensor.actualLastInjection,
|
||||
|
||||
Sensor.deltaTps,
|
||||
Sensor.tpsAccelFuel,
|
||||
|
|
Loading…
Reference in New Issue