diff --git a/firmware/config/engines/MiniCooperR50.cpp b/firmware/config/engines/MiniCooperR50.cpp deleted file mode 100644 index d6ec7e50ec..0000000000 --- a/firmware/config/engines/MiniCooperR50.cpp +++ /dev/null @@ -1,15 +0,0 @@ -/** - * @file MiniCooperR50.cpp - * - * MINI_COOPER_R50 = 13 - * - * @date Apr 9, 2014 - * @author Andrey Belomutskiy, (c) 2012-2018 - */ - -#include "MiniCooperR50.h" - -void setMiniCooperR50(engine_configuration_s *engineConfiguration) { - engineConfiguration->trigger.type = TT_MINI_COOPER_R50; - -} diff --git a/firmware/config/engines/MiniCooperR50.h b/firmware/config/engines/MiniCooperR50.h deleted file mode 100644 index c26260ab36..0000000000 --- a/firmware/config/engines/MiniCooperR50.h +++ /dev/null @@ -1,16 +0,0 @@ -/* - * @file MiniCooperR50.h - * - * @date Apr 9, 2014 - * @author Andrey Belomutskiy, (c) 2012-2017 - */ - -#ifndef MINICOOPERR50_H_ -#define MINICOOPERR50_H_ - -#include "global.h" -#include "engine_configuration.h" - -void setMiniCooperR50(engine_configuration_s *engineConfiguration); - -#endif /* MINICOOPERR50_H_ */ diff --git a/firmware/config/engines/acura_rsx.cpp b/firmware/config/engines/acura_rsx.cpp deleted file mode 100644 index 4f8afd66a4..0000000000 --- a/firmware/config/engines/acura_rsx.cpp +++ /dev/null @@ -1,21 +0,0 @@ -/** - * @file acura_rsx.cpp - * - * set engine_type 27 - * - * @date Jan 16, 2015 - * @author Andrey Belomutskiy, (c) 2012-2018 - */ - -#include "acura_rsx.h" - -EXTERN_CONFIG; - -void setAcuraRSX(DECLARE_CONFIG_PARAMETER_SIGNATURE) { - - // http://injectordynamics.com/injectors/id1300-2/ - engineConfiguration->injector.flow = 1300; - - engineConfiguration->specs.cylindersCount = 4; -} - diff --git a/firmware/config/engines/acura_rsx.h b/firmware/config/engines/acura_rsx.h deleted file mode 100644 index 4ed3bbf7f3..0000000000 --- a/firmware/config/engines/acura_rsx.h +++ /dev/null @@ -1,14 +0,0 @@ -/** - * @file acura_rsx.h - * - * @date Jan 16, 2015 - * @author Andrey Belomutskiy, (c) 2012-2017 - */ -#ifndef CONFIG_ENGINES_ACURA_RSX_H_ -#define CONFIG_ENGINES_ACURA_RSX_H_ - -#include "engine_configuration.h" - -void setAcuraRSX(DECLARE_CONFIG_PARAMETER_SIGNATURE); - -#endif /* CONFIG_ENGINES_ACURA_RSX_H_ */ diff --git a/firmware/config/engines/audi_aan.cpp b/firmware/config/engines/audi_aan.cpp deleted file mode 100644 index ff5265a069..0000000000 --- a/firmware/config/engines/audi_aan.cpp +++ /dev/null @@ -1,41 +0,0 @@ -/** - * @file audi_aan.cpp - * @brief Audo AAN default engine configuration - * - * @date Nov 24, 2013 - * @author Andrey Belomutskiy, (c) 2012-2018 - * - * This file is part of rusEfi - see http://rusefi.com - * - * rusEfi is free software; you can redistribute it and/or modify it under the terms of - * the GNU General Public License as published by the Free Software Foundation; either - * version 3 of the License, or (at your option) any later version. - * - * rusEfi is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without - * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along with this program. - * If not, see . - * - */ - -#include "global.h" - -#if EFI_ENGINE_AUDI_AAN - -#include "engine_controller.h" - -static void configureShaftPositionEmulatorShapeWhat(PwmConfig *state) { - /** - * One signal per cam shaft revolution - */ - const int pinStates0[] = { 1, 0 }; - float switchTimes[] = { 0.8, 1 }; - - int *pinStates[2] = { pinStates0 }; - - weComplexInit("distributor", state, 0, 2, switchTimes, 1, pinStates); -} - -#endif /* EFI_ENGINE_AUDI_AAN */ diff --git a/firmware/config/engines/audi_aan.h b/firmware/config/engines/audi_aan.h deleted file mode 100644 index 8f80dd84e8..0000000000 --- a/firmware/config/engines/audi_aan.h +++ /dev/null @@ -1,14 +0,0 @@ -/** - * @file audi_aan.h - * @brief Audo AAN default engine configuration - * - * @date Nov 24, 2013 - * @author Andrey Belomutskiy, (c) 2012-2017 - */ - -#ifndef AUDI_AAN_H_ -#define AUDI_AAN_H_ - -#include "global.h" - -#endif /* AUDI_AAN_H_ */ diff --git a/firmware/config/engines/engines.mk b/firmware/config/engines/engines.mk index b565a70160..4945ad6b49 100644 --- a/firmware/config/engines/engines.mk +++ b/firmware/config/engines/engines.mk @@ -3,9 +3,6 @@ ENGINES_SRC = ENGINES_SRC_CPP = $(PROJECT_DIR)/config/engines/ford_aspire.cpp \ $(PROJECT_DIR)/config/engines/custom_engine.cpp \ - $(PROJECT_DIR)/config/engines/MiniCooperR50.cpp \ - $(PROJECT_DIR)/config/engines/acura_rsx.cpp \ - $(PROJECT_DIR)/config/engines/audi_aan.cpp \ $(PROJECT_DIR)/config/engines/bmw_e34.cpp \ $(PROJECT_DIR)/config/engines/mazda_miata.cpp \ $(PROJECT_DIR)/config/engines/mazda_miata_base_maps.cpp \ @@ -20,17 +17,14 @@ ENGINES_SRC_CPP = $(PROJECT_DIR)/config/engines/ford_aspire.cpp \ $(PROJECT_DIR)/config/engines/mazda_miata_nb.cpp \ $(PROJECT_DIR)/config/engines/honda_accord.cpp \ $(PROJECT_DIR)/config/engines/subaru.cpp \ - $(PROJECT_DIR)/config/engines/snow_blower.cpp \ $(PROJECT_DIR)/config/engines/GY6_139QMB.cpp \ $(PROJECT_DIR)/config/engines/rover_v8.cpp \ $(PROJECT_DIR)/config/engines/mazda_323.cpp \ $(PROJECT_DIR)/config/engines/mazda_626.cpp \ $(PROJECT_DIR)/config/engines/prometheus.cpp \ - $(PROJECT_DIR)/config/engines/saturn_ion.cpp \ $(PROJECT_DIR)/config/engines/sachs.cpp \ $(PROJECT_DIR)/config/engines/test_engine.cpp \ $(PROJECT_DIR)/config/engines/mitsubishi.cpp \ - $(PROJECT_DIR)/config/engines/gm_2_2.cpp \ $(PROJECT_DIR)/config/engines/dodge_ram.cpp \ $(PROJECT_DIR)/config/engines/vw.cpp \ $(PROJECT_DIR)/config/engines/dodge_stratus.cpp \ diff --git a/firmware/config/engines/gm_2_2.cpp b/firmware/config/engines/gm_2_2.cpp deleted file mode 100644 index a93b70b6b9..0000000000 --- a/firmware/config/engines/gm_2_2.cpp +++ /dev/null @@ -1,21 +0,0 @@ -/* - * @file gm_2_2.cpp - * - * set engine_type 30 - * - * @date Apr 9, 2015 - * @author Andrey Belomutskiy, (c) 2012-2018 - */ - -#include "global.h" -#include "gm_2_2.h" - -EXTERN_CONFIG; - -void setGm2_2(DECLARE_CONFIG_PARAMETER_SIGNATURE) { - setOperationMode(engineConfiguration, FOUR_STROKE_CAM_SENSOR); - engineConfiguration->trigger.type = TT_ONE_PLUS_TOOTHED_WHEEL_60_2; - - boardConfiguration->triggerInputPins[0] = GPIOC_6; - boardConfiguration->triggerInputPins[1] = GPIOA_8; -} diff --git a/firmware/config/engines/gm_2_2.h b/firmware/config/engines/gm_2_2.h deleted file mode 100644 index 7905159971..0000000000 --- a/firmware/config/engines/gm_2_2.h +++ /dev/null @@ -1,15 +0,0 @@ -/* - * @file gm_2_2.h - * - * @date Apr 9, 2015 - * @author Andrey Belomutskiy, (c) 2012-2017 - */ - -#ifndef CONFIG_ENGINES_GM_2_2_H_ -#define CONFIG_ENGINES_GM_2_2_H_ - -#include "engine_configuration.h" - -void setGm2_2(DECLARE_CONFIG_PARAMETER_SIGNATURE); - -#endif /* CONFIG_ENGINES_GM_2_2_H_ */ diff --git a/firmware/config/engines/saturn_ion.cpp b/firmware/config/engines/saturn_ion.cpp deleted file mode 100644 index f2b8d9dbc1..0000000000 --- a/firmware/config/engines/saturn_ion.cpp +++ /dev/null @@ -1,16 +0,0 @@ -/** - * @file saturn_ion.cpp - * - * SATURN_ION_2004 = 12 - * - * 7x GM DIS trigger - * - * @date Mar 28, 2014 - * @author Andrey Belomutskiy, (c) 2012-2018 - */ - -#include "saturn_ion.h" - -void setSaturnIonEngineConfiguration(engine_configuration_s *engineConfiguration) { - engineConfiguration->trigger.type = TT_GM_7X; -} diff --git a/firmware/config/engines/saturn_ion.h b/firmware/config/engines/saturn_ion.h deleted file mode 100644 index ff122f33e6..0000000000 --- a/firmware/config/engines/saturn_ion.h +++ /dev/null @@ -1,25 +0,0 @@ -/** - * @file saturn_ion.h - * - * @date Mar 28, 2014 - * @author Andrey Belomutskiy, (c) 2012-2017 - */ - -#ifndef SATURN_ION_H_ -#define SATURN_ION_H_ - -#include "engine_configuration.h" - -#ifdef __cplusplus -extern "C" -{ -#endif /* __cplusplus */ - -void setSaturnIonEngineConfiguration(engine_configuration_s *engineConfiguration); - -#ifdef __cplusplus -} -#endif /* __cplusplus */ - - -#endif /* SATURN_ION_H_ */ diff --git a/firmware/config/engines/snow_blower.cpp b/firmware/config/engines/snow_blower.cpp deleted file mode 100644 index 141884b5d2..0000000000 --- a/firmware/config/engines/snow_blower.cpp +++ /dev/null @@ -1,9 +0,0 @@ -/** - * @file snow_blower.cpp - * @brief Default configuration of a single-cylinder engine - * - * @date Sep 9, 2013 - * @author Andrey Belomutskiy, (c) 2012-2018 - */ - -#include "global.h"