only: better names around NA96
This commit is contained in:
parent
e280bd2f5e
commit
cc451d991f
|
@ -13,7 +13,8 @@
|
|||
#include "custom_engine.h"
|
||||
#include "mazda_miata_1_6.h"
|
||||
|
||||
static void commonNA8() {
|
||||
void setMazdaMiata96() {
|
||||
miataNAcommonEngineSettings();
|
||||
/**
|
||||
* http://miataturbo.wikidot.com/fuel-injectors
|
||||
* 94-97 (tan) - #195500-2180
|
||||
|
@ -55,10 +56,6 @@ static void commonNA8() {
|
|||
strcpy(engineConfiguration->engineCode, "NA8");
|
||||
|
||||
engineConfiguration->injectionMode = IM_SEQUENTIAL;
|
||||
}
|
||||
|
||||
void setHellenMiata96() {
|
||||
miataNAcommonEngineSettings();
|
||||
commonNA8();
|
||||
engineConfiguration->map.sensor.type = MT_MPXH6400;
|
||||
engineConfiguration->map.sensor.type = MT_MPXH6400;
|
||||
}
|
||||
|
|
|
@ -9,4 +9,4 @@
|
|||
|
||||
#include "engine_configuration.h"
|
||||
|
||||
void setHellenMiata96();
|
||||
void setMazdaMiata96();
|
||||
|
|
|
@ -897,8 +897,8 @@ void resetConfigurationExt(configuration_callback_t boardCallback, engine_type_e
|
|||
case engine_type_e::TOYOTA_1NZ_FE:
|
||||
setToyota1NZFE();
|
||||
break;
|
||||
case engine_type_e::HELLEN_NA8_96:
|
||||
setHellenMiata96();
|
||||
case engine_type_e::MAZDA_NA8_96:
|
||||
setMazdaMiata96();
|
||||
break;
|
||||
case engine_type_e::HELLEN_121_VAG_4_CYL:
|
||||
case engine_type_e::HELLEN_154_VAG:
|
||||
|
|
|
@ -46,7 +46,7 @@ enum class engine_type_e : uint16_t {
|
|||
GY6_139QMB = 8,
|
||||
|
||||
PROTEUS_E65_6H_MAN_IN_THE_MIDDLE = 9,
|
||||
HELLEN_NA8_96 = 10,
|
||||
MAZDA_NA8_96 = 10,
|
||||
FORD_COYOTE = 11,
|
||||
MITSUBISHI_3A92 = 12,
|
||||
TOYOTA_1NZ_FE = 13,
|
||||
|
|
Loading…
Reference in New Issue