From 0d23824726efdc4754b3337615cff3d710dd6f5c Mon Sep 17 00:00:00 2001 From: rusEfi Date: Sat, 20 Aug 2016 23:02:09 -0400 Subject: [PATCH] auto-sync --- firmware/config/engines/test_engine.cpp | 10 ++++++++-- .../console/binary/tunerstudio_configuration.h | 3 ++- firmware/console/status_loop.cpp | 3 +++ firmware/controllers/engine_controller.cpp | 8 ++++---- firmware/controllers/trigger/trigger_central.cpp | 13 ++++++++++++- firmware/controllers/trigger/trigger_central.h | 2 ++ firmware/hw_layer/trigger_input.cpp | 15 +++++++++------ .../models/src/com/rusefi/core/Sensor.java | 1 + java_console/ui/src/com/rusefi/Launcher.java | 2 +- 9 files changed, 42 insertions(+), 15 deletions(-) diff --git a/firmware/config/engines/test_engine.cpp b/firmware/config/engines/test_engine.cpp index 0d0ba03464..2519fab13a 100644 --- a/firmware/config/engines/test_engine.cpp +++ b/firmware/config/engines/test_engine.cpp @@ -16,12 +16,12 @@ EXTERN_ENGINE; void setTestEngineConfiguration(DECLARE_ENGINE_PARAMETER_F) { -// setOperationMode(engineConfiguration, FOUR_STROKE_CRANK_SENSOR); -// engineConfiguration->trigger.type = TT_TOOTHED_WHEEL; setOperationMode(engineConfiguration, FOUR_STROKE_CAM_SENSOR); engineConfiguration->trigger.type = TT_ONE_PLUS_ONE; +// setOperationMode(engineConfiguration, FOUR_STROKE_CRANK_SENSOR); +// engineConfiguration->trigger.type = TT_TOOTHED_WHEEL; // trigger_config_s *triggerConfig = &engineConfiguration->trigger; // triggerConfig->customTotalToothCount = 60; // triggerConfig->customSkippedToothCount = 0; @@ -65,4 +65,10 @@ void setTestVVTEngineConfiguration(DECLARE_ENGINE_PARAMETER_F) { // set_algorithm 3 setAlgorithm(LM_SPEED_DENSITY PASS_ENGINE_PARAMETER); + boardConfiguration->triggerInputPins[1] = GPIO_UNASSIGNED; + engineConfiguration->camInput = GPIOA_5; + + // set_global_trigger_offset_angle + engineConfiguration->globalTriggerAngleOffset = 545; + } diff --git a/firmware/console/binary/tunerstudio_configuration.h b/firmware/console/binary/tunerstudio_configuration.h index f8905cc221..65d9af4137 100644 --- a/firmware/console/binary/tunerstudio_configuration.h +++ b/firmware/console/binary/tunerstudio_configuration.h @@ -127,7 +127,8 @@ typedef struct { int warningCounter; // 236 int lastErrorCode; // 240 float internalMcuTemperature; // 244 - int unused3[7]; + float vvtPosition; // 248 + int unused3[6]; } TunerStudioOutputChannels; #endif /* TUNERSTUDIO_CONFIGURATION_H_ */ diff --git a/firmware/console/status_loop.cpp b/firmware/console/status_loop.cpp index ab7194629a..dfff19bf1d 100644 --- a/firmware/console/status_loop.cpp +++ b/firmware/console/status_loop.cpp @@ -677,6 +677,9 @@ void updateTunerStudioState(TunerStudioOutputChannels *tsOutputChannels DECLARE_ tsOutputChannels->cltCorrection = ENGINE(engineState.cltFuelCorrection); tsOutputChannels->checkEngine = hasErrorCodes(); + + tsOutputChannels->vvtPosition = engine->triggerCentral.vvtPosition; + #if EFI_PROD_CODE || defined(__DOXYGEN__) tsOutputChannels->internalMcuTemperature = getMCUInternalTemperature(); tsOutputChannels->idlePosition = getIdlePosition(); diff --git a/firmware/controllers/engine_controller.cpp b/firmware/controllers/engine_controller.cpp index ff49a9987f..acd569a2fd 100644 --- a/firmware/controllers/engine_controller.cpp +++ b/firmware/controllers/engine_controller.cpp @@ -54,7 +54,7 @@ #if HAL_USE_ADC || defined(__DOXYGEN__) #include "AdcConfiguration.h" -#endif +#endif /* HAL_USE_ADC */ #if EFI_PROD_CODE || defined(__DOXYGEN__) #include "pwm_generator.h" @@ -65,7 +65,7 @@ #include "lcd_controller.h" #include "pin_repository.h" #include "tachometer.h" -#endif +#endif /* EFI_PROD_CODE */ extern bool hasFirmwareErrorFlag; @@ -93,7 +93,7 @@ static LoggingWithStorage logger("Engine Controller"); #if EFI_ENGINE_CONTROL || defined(__DOXYGEN__) static engine_configuration2_s ec2 CCM_OPTIONAL; engine_configuration2_s * engineConfiguration2 = &ec2; -#endif +#endif /* EFI_ENGINE_CONTROL */ #if (EFI_PROD_CODE || EFI_SIMULATOR) || defined(__DOXYGEN__) @@ -103,7 +103,7 @@ engine_configuration2_s * engineConfiguration2 = &ec2; */ Engine _engine(&persistentState.persistentConfiguration); Engine * engine = &_engine; -#endif +#endif /* EFI_PROD_CODE */ /** * I am not sure if this needs to be configurable. diff --git a/firmware/controllers/trigger/trigger_central.cpp b/firmware/controllers/trigger/trigger_central.cpp index d882c22b43..ced7fa92a0 100644 --- a/firmware/controllers/trigger/trigger_central.cpp +++ b/firmware/controllers/trigger/trigger_central.cpp @@ -19,6 +19,7 @@ #include "pwm_generator_logic.h" #include "efilib2.h" #include "settings.h" +#include "engine_math.h" #include "rpm_calculator.h" #if EFI_PROD_CODE || defined(__DOXYGEN__) @@ -75,7 +76,16 @@ extern bool isInsideTriggerHandler; void hwHandleVvtCamSignal(trigger_value_e front) { - // startOfCycleNt + efitick_t offsetNt = getTimeNowNt() - engine->triggerCentral.triggerState.startOfCycleNt; + + angle_t vvtPosition = NT2US(offsetNt) / engine->rpmCalculator.oneDegreeUs; + + // convert engine cycle angle into trigger cycle angle + vvtPosition += tdcPosition(); + fixAngle(vvtPosition); + + engine->triggerCentral.vvtPosition = vvtPosition; + if (ENGINE(isEngineChartEnabled)) { // this is a performance optimization - array index is cheaper then invoking a method with 'switch' @@ -102,6 +112,7 @@ void hwHandleShaftSignal(trigger_event_e signal) { TriggerCentral::TriggerCentral() { nowNt = 0; + vvtPosition = 0; // we need this initial to have not_running at first invocation previousShaftEventTimeNt = (efitimems_t) -10 * US2NT(US_PER_SECOND_LL); diff --git a/firmware/controllers/trigger/trigger_central.h b/firmware/controllers/trigger/trigger_central.h index b64b222deb..16106d9d8a 100644 --- a/firmware/controllers/trigger/trigger_central.h +++ b/firmware/controllers/trigger/trigger_central.h @@ -30,6 +30,8 @@ public: void resetCounters(); TriggerState triggerState; efitick_t nowNt; + angle_t vvtPosition; + volatile efitime_t previousShaftEventTimeNt; private: IntListenerArray<15> triggerListeneres; diff --git a/firmware/hw_layer/trigger_input.cpp b/firmware/hw_layer/trigger_input.cpp index fdaeefa2c5..da547fe199 100644 --- a/firmware/hw_layer/trigger_input.cpp +++ b/firmware/hw_layer/trigger_input.cpp @@ -28,10 +28,11 @@ EXTERN_ENGINE static Logging *logger; static void cam_icu_width_callback(ICUDriver *icup) { + hwHandleVvtCamSignal(TV_RISE); } static void cam_icu_period_callback(ICUDriver *icup) { - + hwHandleVvtCamSignal(TV_FALL); } /** @@ -85,6 +86,9 @@ cam_icu_width_callback, cam_icu_period_callback }; static ICUDriver *turnOnTriggerInputPin(brain_pin_e hwPin, ICUConfig *icucfg) { + if (hwPin == GPIO_UNASSIGNED) + return NULL; + // configure pin turnOnCapturePin("trigger", hwPin); icucfg->channel = getInputCaptureChannel(hwPin); @@ -128,11 +132,8 @@ static void rememberPrimaryChannel(void) { void turnOnTriggerInputPins(Logging *sharedLogger) { logger = sharedLogger; - for (int i = 0; i < TRIGGER_SUPPORTED_CHANNELS; i++) { - turnOnTriggerInputPin(boardConfiguration->triggerInputPins[i], &shaft_icucfg); - } - rememberPrimaryChannel(); + applyNewTriggerInputPins(); } extern engine_configuration_s activeConfiguration; @@ -158,7 +159,9 @@ void applyNewTriggerInputPins(void) { } } - turnOnTriggerInputPin(engineConfiguration->camInput, &cam_icucfg); + if (engineConfiguration->camInput != activeConfiguration.camInput) { + turnOnTriggerInputPin(engineConfiguration->camInput, &cam_icucfg); + } rememberPrimaryChannel(); } diff --git a/java_console/models/src/com/rusefi/core/Sensor.java b/java_console/models/src/com/rusefi/core/Sensor.java index ba998f42f1..9e20497f45 100644 --- a/java_console/models/src/com/rusefi/core/Sensor.java +++ b/java_console/models/src/com/rusefi/core/Sensor.java @@ -126,6 +126,7 @@ public enum Sensor { TIME_SECONDS(SensorCategory.OPERATIONS, FieldType.INT, 224, BackgroundColor.MUD, 0, 5), SPEED2RPM(SensorCategory.SENSOR_INPUTS, FieldType.FLOAT, 232, BackgroundColor.MUD, 0, 5), INT_TEMP(SensorCategory.OPERATIONS, FieldType.FLOAT, 244, BackgroundColor.MUD, 0, 5), + vvtPosition(SensorCategory.SENSOR_INPUTS, FieldType.FLOAT, 248, BackgroundColor.MUD, 0, 5), INJ_1_2_DELTA("inj 1-2 delta", SensorCategory.SNIFFING), INJ_3_4_DELTA("inj 3-4 delta", SensorCategory.SNIFFING), diff --git a/java_console/ui/src/com/rusefi/Launcher.java b/java_console/ui/src/com/rusefi/Launcher.java index 12268a0745..2d1babd743 100644 --- a/java_console/ui/src/com/rusefi/Launcher.java +++ b/java_console/ui/src/com/rusefi/Launcher.java @@ -38,7 +38,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig; * @see EngineSnifferPanel */ public class Launcher { - public static final int CONSOLE_VERSION = 20160808; + public static final int CONSOLE_VERSION = 20160820; public static final boolean SHOW_STIMULATOR = false; private static final String TAB_INDEX = "main_tab"; protected static final String PORT_KEY = "port";