only: F136

This commit is contained in:
rusefillc 2024-01-09 23:22:08 -05:00
parent 5cb68ddde1
commit 83e610d113
5 changed files with 24 additions and 22 deletions

View File

@ -4,6 +4,7 @@ ENGINES_SRC_CPP = $(PROJECT_DIR)/config/engines/ford_aspire.cpp \
$(PROJECT_DIR)/config/engines/custom_engine.cpp \
$(PROJECT_DIR)/config/engines/bmw_m73.cpp \
$(PROJECT_DIR)/config/engines/bmw_m73_mre.cpp \
$(PROJECT_DIR)/config/engines/f136.cpp \
$(PROJECT_DIR)/config/engines/bmw_n73.cpp \
$(PROJECT_DIR)/config/engines/mazda/mazda_miata.cpp \
$(PROJECT_DIR)/config/engines/mazda/mazda_miata_base_maps.cpp \
@ -40,5 +41,4 @@ ENGINES_SRC_CPP = $(PROJECT_DIR)/config/engines/ford_aspire.cpp \
$(PROJECT_DIR)/config/engines/toyota_jzs147.cpp \
$(PROJECT_DIR)/config/engines/toyota_1NZ_FE.cpp \
$(PROJECT_DIR)/config/engines/ford_festiva.cpp \

View File

@ -0,0 +1,4 @@
#include "f136.h"
void setF136() {
}

View File

@ -0,0 +1,5 @@
#pragma once
#include "engine_configuration.h"
void setF136();

View File

@ -48,6 +48,7 @@
#include "ford_aspire.h"
#include "ford_1995_inline_6.h"
#include "f136.h"
#include "honda_k_dbc.h"
#include "honda_600.h"
@ -892,6 +893,10 @@ void resetConfigurationExt(configuration_callback_t boardCallback, engine_type_e
break;
#endif
case engine_type_e::FERRARI_F136:
setF136();
break;
#if HW_HELLEN
case engine_type_e::TOYOTA_1NZ_FE:
setToyota1NZFE();

View File

@ -50,8 +50,13 @@ enum class engine_type_e : uint16_t {
FORD_COYOTE = 11,
MITSUBISHI_3A92 = 12,
TOYOTA_1NZ_FE = 13,
MRE_MIATA_NA6_MAP = 66,
FORD_ESCORT_GT = 14,
FUEL_BENCH = 15,
MITSUBISHI_4G93 = 16,
PROTEUS_M111 = 17,
TEST_33816 = 18,
TEST_ROTARY = 19,
// Frankenso board
@ -59,13 +64,6 @@ enum class engine_type_e : uint16_t {
MRE_MIATA_94_MAP = 20,
MIATA_1996 = 21,
FORD_ESCORT_GT = 14,
MITSUBISHI_4G93 = 16,
TEST_33816 = 18,
SUBARU_2003_WRX = 22,
/**
@ -136,30 +134,20 @@ enum class engine_type_e : uint16_t {
TEST_ISSUE_366_BOTH = 52,
TEST_ISSUE_366_RISE = 53,
MAVERICK_X3 = 54,
MAZDA_MIATA_2003_BOARD_TEST = 55,
FRANKENSO_MAZDA_MIATA_NA8 = 56,
HELLEN_HONDA_BCM = 57,
ETB_BENCH_ENGINE = 58,
FRANKENSO_TEST_33810 = 59,
L9779_BENCH_ENGINE = 60,
EEPROM_BENCH_ENGINE = 61,
MRE_VW_B6 = 62,
PROTEUS_BMW_M73 = 63,
DODGE_RAM = 64,
CITROEN_TU3JP = 65,
MRE_MIATA_NA6_MAP = 66,
PROTEUS_MIATA_NB2 = 67,
MRE_M111 = 68,
@ -212,7 +200,6 @@ enum class engine_type_e : uint16_t {
WASTEGATE_PROTEUS_TEST = 96,
ALPHAX_8CHAN_SBC = 97,
PROTEUS_SBC = 98,
PROTEUS_M111 = 17,
/**
* this configuration has as few pins configured as possible
@ -228,6 +215,7 @@ enum class engine_type_e : uint16_t {
// both Proteus and 4chan/8chan
HYUNDAI_PB = 104,
FERRARI_F136 = 105,
};
/**