documenting miata vvt board

This commit is contained in:
rusEfi 2017-04-17 22:10:19 -04:00
parent d20cae1a54
commit bd79b66768
5 changed files with 10 additions and 3 deletions

View File

@ -19,6 +19,7 @@
*
* tachometer +5 VP PE8
* alternator +5 VP PE10
* MIL check engine PD9
*
* VVT solenoid on aux PID#1 PE3
*
@ -226,6 +227,7 @@ void setMazdaMiata2003EngineConfiguration(DECLARE_ENGINE_PARAMETER_F) {
boardConfiguration->malfunctionIndicatorPin = GPIOD_9;
// boardConfiguration->malfunctionIndicatorPinMode = OM_INVERTED;
engineConfiguration->map.sensor.type = MT_GM_3_BAR;
/**
* PA4 Wideband O2 Sensor

View File

@ -117,6 +117,8 @@ case SUBARU_2003_WRX:
case TEST_ENGINE:
return "TEST_ENGINE";
case MAZDA_MIATA_2003:
return "miata 2003 OLD";
case MAZDA_MIATA_2003_BETTER:
return "miata 2003";
case TEST_ENGINE_VVT:
return "TEST_ENGINE_VVT";

View File

@ -1033,6 +1033,9 @@ void resetConfigurationExt(Logging * logger, engine_type_e engineType DECLARE_EN
case MAZDA_MIATA_2003:
setMazdaMiata2003EngineConfiguration(PASS_ENGINE_PARAMETER_F);
break;
case MAZDA_MIATA_2003_BETTER:
setMazdaMiata2003EngineConfigurationNewBoard(PASS_ENGINE_PARAMETER_F);
break;
case TEST_ENGINE_VVT:
setTestVVTEngineConfiguration(PASS_ENGINE_PARAMETER_F);
break;

View File

@ -153,10 +153,10 @@ typedef enum {
TEST_CIVIC_4_0_RISE = 51,
//todo: why does this not work?#if EFI_UNIT_TEST || defined(__DOXYGEN__)
TEST_ISSUE_366_BOTH = 52,
TEST_ISSUE_366_RISE = 53,
//todo:#endif
MAZDA_MIATA_2003_BETTER = 54,
Force_4b_engine_type = ENUM_32_BITS,
} engine_type_e;

View File

@ -251,5 +251,5 @@ int getRusEfiVersion(void) {
return 123; // this is here to make the compiler happy about the unused array
if (UNUSED_CCM_SIZE[0] * 0 != 0)
return 3211; // this is here to make the compiler happy about the unused array
return 20170413;
return 20170417;
}