From 403d447c1e1f15e69958ecd0422d2eb91648a56f Mon Sep 17 00:00:00 2001 From: rusEfi Date: Thu, 28 May 2015 23:08:11 -0400 Subject: [PATCH] auto-sync --- firmware/controllers/algo/engine.cpp | 2 +- firmware/controllers/algo/engine.h | 4 ++-- firmware/controllers/math/efitime.h | 2 +- firmware/controllers/sensors/map.cpp | 22 ++++++++++++++++++- .../controllers/trigger/rpm_calculator.cpp | 4 ++-- firmware/development/wave_analyzer.cpp | 8 +++---- firmware/hw_layer/vehicle_speed.cpp | 6 ++--- 7 files changed, 34 insertions(+), 14 deletions(-) diff --git a/firmware/controllers/algo/engine.cpp b/firmware/controllers/algo/engine.cpp index 86e9478ce0..73b8440a86 100644 --- a/firmware/controllers/algo/engine.cpp +++ b/firmware/controllers/algo/engine.cpp @@ -44,7 +44,7 @@ void Engine::updateSlowSensors() { injectorLagMs = getInjectorLag(getVBatt(PASS_ENGINE_PARAMETER_F) PASS_ENGINE_PARAMETER); } -void Engine::onTriggerEvent(uint64_t nowNt) { +void Engine::onTriggerEvent(efitick_t nowNt) { isSpinning = true; lastTriggerEventTimeNt = nowNt; } diff --git a/firmware/controllers/algo/engine.h b/firmware/controllers/algo/engine.h index c1b17b421f..e3357d928f 100644 --- a/firmware/controllers/algo/engine.h +++ b/firmware/controllers/algo/engine.h @@ -218,9 +218,9 @@ public: */ NamedOutputPin *ignitionPin[IGNITION_PIN_COUNT]; - void onTriggerEvent(uint64_t nowNt); + void onTriggerEvent(efitick_t nowNt); EngineState engineState; - uint64_t lastTriggerEventTimeNt; + efitick_t lastTriggerEventTimeNt; /** * this value depends on a slow-changing VBatt value, so diff --git a/firmware/controllers/math/efitime.h b/firmware/controllers/math/efitime.h index 6c36e02977..60e5aa3429 100644 --- a/firmware/controllers/math/efitime.h +++ b/firmware/controllers/math/efitime.h @@ -45,7 +45,7 @@ efitimeus_t getTimeNowUs(void); */ efitick_t getTimeNowNt(void); -uint64_t getHalTimer(void); +efitick_t getHalTimer(void); /** * @brief Returns the number of milliseconds since the board initialization. diff --git a/firmware/controllers/sensors/map.cpp b/firmware/controllers/sensors/map.cpp index f70e645609..2efb0629a1 100644 --- a/firmware/controllers/sensors/map.cpp +++ b/firmware/controllers/sensors/map.cpp @@ -6,11 +6,16 @@ #include "error_handling.h" #include "map.h" +#if EFI_PROD_CODE || defined(__DOXYGEN__) +#include "digital_input_hw.h" +#endif + #if EFI_ANALOG_SENSORS || defined(__DOXYGEN__) EXTERN_ENGINE; static FastInterpolation customMap; +static efitick_t digitalMapDiff = 0; /** * @brief MAP value decoded for a 1.83 Honda sensor @@ -115,12 +120,27 @@ static void applyConfiguration(DECLARE_ENGINE_PARAMETER_F) { mapDecoder = getDecoder(engineConfiguration->map.sensor.type); } +static void digitalMapWidthCallback(void) { + +} + void initMapDecoder(DECLARE_ENGINE_PARAMETER_F) { applyConfiguration(PASS_ENGINE_PARAMETER_F); //engine->configurationListeners.registerCallback(applyConfiguration); + +#if EFI_PROD_CODE || defined(__DOXYGEN__) + if (engineConfiguration->hasFrequencyReportingMapSensor) { + digital_input_s* digitalMapInput = initWaveAnalyzerDriver(boardConfiguration->frequencyReportingMapInputPin); + startInputDriver(digitalMapInput, true); + + digitalMapInput->widthListeners.registerCallback((VoidInt) digitalMapWidthCallback, NULL); + + } + +#endif } -#else +#else /* EFI_ANALOG_SENSORS */ void initMapDecoder(DECLARE_ENGINE_PARAMETER_F) { } diff --git a/firmware/controllers/trigger/rpm_calculator.cpp b/firmware/controllers/trigger/rpm_calculator.cpp index a78499cd1c..3538eabc62 100644 --- a/firmware/controllers/trigger/rpm_calculator.cpp +++ b/firmware/controllers/trigger/rpm_calculator.cpp @@ -59,7 +59,7 @@ RpmCalculator::RpmCalculator() { * @return true if there was a full shaft revolution within the last second */ bool RpmCalculator::isRunning(DECLARE_ENGINE_PARAMETER_F) { - uint64_t nowNt = getTimeNowNt(); + efitick_t nowNt = getTimeNowNt(); if (engine->stopEngineRequestTimeNt != 0) { if (nowNt - engine->stopEngineRequestTimeNt < 3 * US2NT(US_PER_SECOND_LL)) { return false; @@ -138,7 +138,7 @@ bool isCranking(void) { */ void rpmShaftPositionCallback(trigger_event_e ckpSignalType, uint32_t index DECLARE_ENGINE_PARAMETER_S) { RpmCalculator *rpmState = &engine->rpmCalculator; - uint64_t nowNt = getTimeNowNt(); + efitick_t nowNt = getTimeNowNt(); engine->m.beforeRpmCb = GET_TIMESTAMP(); #if EFI_PROD_CODE efiAssertVoid(getRemainingStack(chThdSelf()) > 256, "lowstck#2z"); diff --git a/firmware/development/wave_analyzer.cpp b/firmware/development/wave_analyzer.cpp index 024d1a9b79..8279aa4de6 100644 --- a/firmware/development/wave_analyzer.cpp +++ b/firmware/development/wave_analyzer.cpp @@ -56,7 +56,7 @@ static void ensureInitialized(WaveReader *reader) { #if EFI_WAVE_ANALYZER || defined(__DOXYGEN__) static void waAnaWidthCallback(WaveReader *reader) { - uint64_t nowUs = getTimeNowUs(); + efitick_t nowUs = getTimeNowUs(); reader->eventCounter++; reader->lastActivityTimeUs = nowUs; addWaveChartEvent(reader->name, WC_UP); @@ -69,12 +69,12 @@ static void waAnaWidthCallback(WaveReader *reader) { } void WaveReader::onFallEvent() { - uint64_t nowUs = getTimeNowUs(); + efitick_t nowUs = getTimeNowUs(); eventCounter++; lastActivityTimeUs = nowUs; addWaveChartEvent(name, WC_DOWN); - uint64_t width = nowUs - widthEventTimeUs; + efitick_t width = nowUs - widthEventTimeUs; last_wave_high_widthUs = width; int revolutionCounter = getRevolutionCounter(); @@ -145,7 +145,7 @@ static void waTriggerEventListener(trigger_event_e ckpSignalType, uint32_t index if (index != 0) { return; } - uint64_t nowUs = getTimeNowUs(); + efitick_t nowUs = getTimeNowUs(); engineCycleDurationUs = nowUs - previousEngineCycleTimeUs; previousEngineCycleTimeUs = nowUs; } diff --git a/firmware/hw_layer/vehicle_speed.cpp b/firmware/hw_layer/vehicle_speed.cpp index 3e0a85d40f..ac6296e6f8 100644 --- a/firmware/hw_layer/vehicle_speed.cpp +++ b/firmware/hw_layer/vehicle_speed.cpp @@ -18,8 +18,8 @@ EXTERN_ENGINE static Logging *logger; -static uint64_t lastSignalTimeNt = 0; -static uint64_t vssDiff = 0; +static efitick_t lastSignalTimeNt = 0; +static efitick_t vssDiff = 0; static int vssCounter = 0; /** @@ -35,7 +35,7 @@ float getVehicleSpeed(void) { static void vsAnaWidthCallback(void) { vssCounter++; - uint64_t nowNt = getTimeNowNt(); + efitick_t nowNt = getTimeNowNt(); vssDiff = nowNt - lastSignalTimeNt; lastSignalTimeNt = nowNt; }