From 07de04bd2cb6a988cd93f82fa543ba8c0351ce3d Mon Sep 17 00:00:00 2001 From: rusefillc Date: Tue, 22 Feb 2022 22:14:13 -0500 Subject: [PATCH] dead --- firmware/config/engines/honda_600.cpp | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/firmware/config/engines/honda_600.cpp b/firmware/config/engines/honda_600.cpp index 8aaf3dfac0..c5bfe6c90c 100644 --- a/firmware/config/engines/honda_600.cpp +++ b/firmware/config/engines/honda_600.cpp @@ -17,30 +17,9 @@ #include "can_hw.h" #endif -#if IGN_LOAD_COUNT == DEFAULT_IGN_LOAD_COUNT -static const uint8_t default_custom_timing_table[16][16] = { - /* RPM 0 500 1000 1500 2000 2500 3000 3500 4000 4500 5000 5500 6000 6500 7000 */ - /* Load 0% */{ 10, 10, 10, 12, 12, 12, 12, 15, 15, 15, 15, 26, 28, 30, 32}, - /* Load 10% */{ 10, 10, 10, 12, 12, 12, 12, 15, 15, 15, 15, 26, 28, 30, 32}, - /* Load 20% */{ 10, 10, 10, 10, 10, 10, 12, 15, 20, 22, 24, 26, 28, 30, 32}, - /* Load 30% */{ 10, 10, 10, 10, 10, 10, 12, 15, 20, 22, 24, 26, 28, 30, 32}, - /* Load 40% */{ 10, 10, 10, 10, 10, 10, 12, 15, 20, 22, 24, 26, 28, 30, 32}, - /* Load 50% */{ 10, 10, 10, 10, 10, 10, 12, 15, 20, 22, 24, 26, 28, 30, 32}, - /* Load 60% */{ 10, 10, 10, 10, 10, 10, 15, 18, 20, 22, 24, 26, 28, 30, 32}, - /* Load 70% */{ 10, 10, 10, 10, 10, 10, 15, 18, 20, 22, 24, 26, 28, 30, 32}, - /* Load 80% */{ 10, 10, 10, 10, 10, 10, 15, 18, 20, 22, 24, 26, 28, 30, 32}, - /* Load 90% */{ 10, 10, 10, 10, 10, 10, 15, 18, 20, 22, 24, 26, 28, 30, 32}, - /* Load 100% */{ 10, 10, 10, 10, 10, 10, 15, 18, 20, 22, 24, 26, 28, 30, 32}, -}; -#endif - static void setDefaultCustomMaps() { setTimingLoadBin(0,100); setTimingRpmBin(0,7000); - -#if IGN_LOAD_COUNT == DEFAULT_IGN_LOAD_COUNT - copyTable(config->ignitionTable, default_custom_timing_table); -#endif } void setHonda600() {