proteusStimQc

only:proteus_f7
This commit is contained in:
rusefi 2023-08-23 21:57:08 -04:00
parent 93bfbecea3
commit 4f192b5c84
3 changed files with 14 additions and 0 deletions

View File

@ -974,3 +974,14 @@ void fuelBenchMode() {
setArrayValues(config->crankingCycleCoef, 1.0f);
setBodyControlUnit();
}
void proteusStimQc() {
engineConfiguration->trigger.type = trigger_type_e::TT_ONE_PLUS_ONE;
engineConfiguration->triggerInputPins[0] = PROTEUS_DIGITAL_1;
engineConfiguration->triggerInputPins[1] = PROTEUS_DIGITAL_2;
engineConfiguration->camInputs[0] = PROTEUS_DIGITAL_3;
engineConfiguration->camInputs[1] = PROTEUS_DIGITAL_4;
engineConfiguration->vehicleSpeedSensorInputPin = PROTEUS_DIGITAL_5;
engineConfiguration->brakePedalPin = PROTEUS_DIGITAL_6;
}

View File

@ -31,6 +31,7 @@ void fuelBenchMode();
*/
void proteusBoardTest();
void proteusLuaDemo();
void proteusStimQc();
void proteusHarley();
void proteusDcWastegateTest();

View File

@ -785,6 +785,8 @@ void resetConfigurationExt(configuration_callback_t boardCallback, engine_type_e
setEngineProteusGearboxManInTheMiddle();
break;
case engine_type_e::PROTEUS_STIM_QC:
proteusStimQc();
break;
case engine_type_e::PROTEUS_N73:
case engine_type_e::PROTEUS_MIATA_NB2:
setMiataNB2_Proteus();