From 0c91e7774983f43019242fd862ae2304f62f4953 Mon Sep 17 00:00:00 2001 From: rusefillc Date: Sat, 4 Dec 2021 18:20:01 -0500 Subject: [PATCH] MAP phase sensing #3544 taking a step back to happy place --- firmware/console/binary/output_channels.txt | 2 +- firmware/controllers/engine_cycle/map_averaging.cpp | 5 ++++- firmware/controllers/trigger/trigger_central.h | 4 ++-- unit_tests/tests/trigger/test_map_cam.cpp | 4 +++- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/firmware/console/binary/output_channels.txt b/firmware/console/binary/output_channels.txt index 0b8cb8d02c..6f2254b65b 100644 --- a/firmware/console/binary/output_channels.txt +++ b/firmware/console/binary/output_channels.txt @@ -260,7 +260,7 @@ uint16_t rpmAcceleration;dRPM;"RPM/s",1, 0, 0, 0, 0 uint8_t fallbackMap;;"", 1, 0, -10000, 10000, 3 uint8_t TEMPLOG_map_peak;;"", 1, 0, -10000, 10000, 3 uint8_t TEMPLOG_map_length;;"", 1, 0, -10000, 10000, 3 - uint8_t unused113;;"", 1, 0, -10000, 10000, 3 + uint8_t TEMPLOG_mapIndex;;"", 1, 0, -10000, 10000, 3 uint16_t autoscale timingCltCorrection;;"%",{1/@@PACK_MULT_PERCENT@@}, 0, 0, 0, 0 diff --git a/firmware/controllers/engine_cycle/map_averaging.cpp b/firmware/controllers/engine_cycle/map_averaging.cpp index 371858660c..048de73ee6 100644 --- a/firmware/controllers/engine_cycle/map_averaging.cpp +++ b/firmware/controllers/engine_cycle/map_averaging.cpp @@ -92,6 +92,8 @@ static void startAveraging(scheduling_s *endAveragingScheduling) { } #if HAL_USE_ADC +static int fastMapCounter = 0; + /** * This method is invoked from ADC callback. * @note This method is invoked OFTEN, this method is a potential bottleneck - the implementation should be @@ -106,7 +108,8 @@ void mapAveragingAdcCallback(adcsample_t adcValue) { tsOutputChannels.instantMAPValue = instantMap; #endif // EFI_TUNER_STUDIO - if (engineConfiguration->vvtMode[0] == VVT_MAP_V_TWIN) { + if (engineConfiguration->vvtMode[0] == VVT_MAP_V_TWIN && + ((fastMapCounter++ % engineConfiguration->mapCamSkipFactor) == 0)) { engine->triggerCentral.mapState.add(instantMap); bool isPeak = engine->triggerCentral.mapState.isPeak(); #if EFI_TUNER_STUDIO diff --git a/firmware/controllers/trigger/trigger_central.h b/firmware/controllers/trigger/trigger_central.h index 64d9734acd..ff2fc3e3bf 100644 --- a/firmware/controllers/trigger/trigger_central.h +++ b/firmware/controllers/trigger/trigger_central.h @@ -15,7 +15,7 @@ #include "pin_repository.h" #include "local_version_holder.h" -#define MAP_CAM_BUFFER 64 +#define MAP_CAM_BUFFER 8 class Engine; typedef void (*ShaftPositionListener)(trigger_event_e signal, uint32_t index, efitick_t edgeTimestamp); @@ -45,7 +45,7 @@ struct MapState { // add new value mapBuffer.add(value); - current = mapBuffer.sum(MAP_CAM_BUFFER); + current = mapBuffer.sum(engineConfiguration->mapCamAveragingLength); } bool isPeak() { diff --git a/unit_tests/tests/trigger/test_map_cam.cpp b/unit_tests/tests/trigger/test_map_cam.cpp index e4ce363d82..476abd4fce 100644 --- a/unit_tests/tests/trigger/test_map_cam.cpp +++ b/unit_tests/tests/trigger/test_map_cam.cpp @@ -23,14 +23,16 @@ static int getZigZag(int index) { } TEST(trigger, map_cam) { + EngineTestHelper eth(TEST_ENGINE); + engineConfiguration->mapCamAveragingLength = 8; MapState state; int i = 0; for (;i<404;i++) { state.add(getZigZag(i)); - if (state.mapBuffer.getCount() > MAP_CAM_BUFFER) { + if (state.mapBuffer.getCount() > engineConfiguration->mapCamAveragingLength) { ASSERT_FALSE(state.isPeak()) << "At " << i; } }