From 4997dcde9d849ed33e8ac2f73e1116712e4c027f Mon Sep 17 00:00:00 2001 From: rusefi Date: Sat, 26 Nov 2022 21:53:31 -0500 Subject: [PATCH] minor clean-up --- .../hellen/hellen121vag/board_configuration.cpp | 1 - firmware/config/engines/vw_b6.cpp | 2 +- .../controllers/actuators/electronic_throttle.cpp | 14 -------------- firmware/controllers/lua/lua_hooks.cpp | 2 +- 4 files changed, 2 insertions(+), 17 deletions(-) diff --git a/firmware/config/boards/hellen/hellen121vag/board_configuration.cpp b/firmware/config/boards/hellen/hellen121vag/board_configuration.cpp index e880adcc56..9a3491ddab 100644 --- a/firmware/config/boards/hellen/hellen121vag/board_configuration.cpp +++ b/firmware/config/boards/hellen/hellen121vag/board_configuration.cpp @@ -11,7 +11,6 @@ */ #include "pch.h" -#include "electronic_throttle_impl.h" #include "hellen_meta.h" #include "defaults.h" diff --git a/firmware/config/engines/vw_b6.cpp b/firmware/config/engines/vw_b6.cpp index f6f270c6f3..3a99a1e0df 100644 --- a/firmware/config/engines/vw_b6.cpp +++ b/firmware/config/engines/vw_b6.cpp @@ -9,7 +9,7 @@ #include "vw_b6.h" #include "table_helper.h" -#include "electronic_throttle_impl.h" +#include "electronic_throttle.h" #include "mre_meta.h" #include "defaults.h" #include "proteus_meta.h" diff --git a/firmware/controllers/actuators/electronic_throttle.cpp b/firmware/controllers/actuators/electronic_throttle.cpp index 04a5ecbe43..04fffdd9c5 100644 --- a/firmware/controllers/actuators/electronic_throttle.cpp +++ b/firmware/controllers/actuators/electronic_throttle.cpp @@ -7,20 +7,6 @@ * * Limited user documentation at https://github.com/rusefi/rusefi/wiki/HOWTO_electronic_throttle_body * - * todo: make this more universal if/when we get other hardware options - * - * May 2020 two vehicles have driver 500 miles each - * Sep 2019 two-wire TLE9201 official driving around the block! https://www.youtube.com/watch?v=1vCeICQnbzI - * by the way 9201 does not like getting above 8khz - it starts to get warm - * May 2019 two-wire TLE7209 now behaves same as three-wire VNH2SP30 "eBay red board" on BOSCH 0280750009 - * Apr 2019 two-wire TLE7209 support added - * Mar 2019 best results so far achieved with three-wire H-bridges like VNH2SP30 on BOSCH 0280750009 - * Jan 2019 actually driven around the block but still need some work. - * Jan 2017 status: - * Electronic throttle body with it's spring is definitely not linear - both P and I factors of PID are required to get any results - * PID implementation tested on a bench only - * it is believed that more than just PID would be needed, as is this is probably - * not usable on a real vehicle. Needs to be tested :) * * https://raw.githubusercontent.com/wiki/rusefi/rusefi_documentation/oem_docs/VAG/Bosch_0280750009_pinout.jpg * diff --git a/firmware/controllers/lua/lua_hooks.cpp b/firmware/controllers/lua/lua_hooks.cpp index d0341878c0..b632fe6891 100644 --- a/firmware/controllers/lua/lua_hooks.cpp +++ b/firmware/controllers/lua/lua_hooks.cpp @@ -24,7 +24,7 @@ using namespace luaaa; #include "trigger_emulator_algo.h" #if EFI_PROD_CODE -#include "electronic_throttle_impl.h" +#include "electronic_throttle.h" #endif // EFI_PROD_CODE #if EFI_SENT_SUPPORT