2015-07-10 06:01:56 -07:00
|
|
|
/**
|
|
|
|
* @file custom_engine.cpp
|
|
|
|
*
|
2017-02-24 15:55:53 -08:00
|
|
|
*
|
2017-12-02 16:25:36 -08:00
|
|
|
* set engine_type 49
|
2017-12-03 14:26:15 -08:00
|
|
|
* FRANKENSO_QA_ENGINE
|
2017-12-02 16:25:36 -08:00
|
|
|
* See also DEFAULT_ENGINE_TYPE
|
|
|
|
* Frankenso QA 12 cylinder engine
|
2017-02-24 15:55:53 -08:00
|
|
|
*
|
2015-07-10 06:01:56 -07:00
|
|
|
* @date Jan 18, 2015
|
2020-01-07 21:02:40 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
2015-07-10 06:01:56 -07:00
|
|
|
*/
|
2019-12-28 20:22:16 -08:00
|
|
|
|
2021-08-03 19:05:01 -07:00
|
|
|
#include "pch.h"
|
|
|
|
|
2015-07-10 06:01:56 -07:00
|
|
|
#include "custom_engine.h"
|
2021-10-27 16:54:45 -07:00
|
|
|
#include "mre_meta.h"
|
2021-11-10 19:27:21 -08:00
|
|
|
#include "proteus_meta.h"
|
2022-01-09 14:40:08 -08:00
|
|
|
#include "hellen_meta.h"
|
2022-02-24 21:36:16 -08:00
|
|
|
#include "odometer.h"
|
2023-02-18 19:40:18 -08:00
|
|
|
#include "defaults.h"
|
2023-08-23 20:47:32 -07:00
|
|
|
#include "../board_id/qc_stim_meta.h"
|
|
|
|
|
|
|
|
static_assert(libPROTEUS_STIM_QC == (int)engine_type_e::PROTEUS_STIM_QC);
|
|
|
|
static_assert(libHELLEN_2CHAN_STIM_QC == (int)engine_type_e::HELLEN_2CHAN_STIM_QC);
|
|
|
|
static_assert(libHELLEN_4CHAN_STIM_QC == (int)engine_type_e::HELLEN_4CHAN_STIM_QC);
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2019-09-21 21:16:46 -07:00
|
|
|
#if EFI_ELECTRONIC_THROTTLE_BODY
|
|
|
|
#include "electronic_throttle.h"
|
|
|
|
#endif
|
|
|
|
|
2019-04-12 19:10:57 -07:00
|
|
|
#if EFI_PROD_CODE
|
2016-01-24 12:02:46 -08:00
|
|
|
#include "can_hw.h"
|
2018-01-28 11:03:58 -08:00
|
|
|
#include "scheduler.h"
|
2017-12-03 12:23:39 -08:00
|
|
|
#endif /* EFI_PROD_CODE */
|
2016-01-24 12:02:46 -08:00
|
|
|
|
2019-04-12 19:10:57 -07:00
|
|
|
#if EFI_PROD_CODE
|
2018-01-28 11:03:58 -08:00
|
|
|
static int periodIndex = 0;
|
|
|
|
|
|
|
|
static OutputPin testPin;
|
2021-07-13 17:10:31 -07:00
|
|
|
static scheduling_s testScheduling;
|
2018-01-28 11:03:58 -08:00
|
|
|
|
2018-01-29 11:25:28 -08:00
|
|
|
static int test557[] = {5, 5, 10, 10, 20, 20, 50, 50, 100, 100, 200, 200, 500, 500, 500, 500};
|
|
|
|
#define TEST_LEN 16
|
2018-01-28 11:03:58 -08:00
|
|
|
|
|
|
|
efitimeus_t testTime;
|
|
|
|
|
2020-01-06 21:41:18 -08:00
|
|
|
static void toggleTestAndScheduleNext(void *) {
|
2018-01-28 11:03:58 -08:00
|
|
|
testPin.toggle();
|
|
|
|
periodIndex = (periodIndex + 1) % TEST_LEN;
|
|
|
|
testTime += test557[periodIndex];
|
2021-07-14 13:03:00 -07:00
|
|
|
engine->executor.scheduleByTimestamp("test", &testScheduling, testTime, &toggleTestAndScheduleNext);
|
2018-01-28 11:03:58 -08:00
|
|
|
}
|
|
|
|
|
2018-03-04 14:55:46 -08:00
|
|
|
/**
|
|
|
|
* https://github.com/rusefi/rusefi/issues/557 common rail / direct injection scheduling control test
|
|
|
|
*/
|
2019-01-10 21:03:42 -08:00
|
|
|
void runSchedulingPrecisionTestIfNeeded(void) {
|
2021-01-08 17:01:26 -08:00
|
|
|
if (!isBrainPinValid(engineConfiguration->test557pin)) {
|
2018-01-28 11:03:58 -08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
testPin.initPin("test", engineConfiguration->test557pin);
|
|
|
|
testPin.setValue(0);
|
|
|
|
testTime = getTimeNowUs();
|
2020-01-06 21:41:18 -08:00
|
|
|
toggleTestAndScheduleNext(/*unused*/ nullptr);
|
2018-01-28 11:03:58 -08:00
|
|
|
}
|
|
|
|
#endif /* EFI_PROD_CODE */
|
|
|
|
|
2023-02-10 16:10:36 -08:00
|
|
|
void setDiscoveryPdm() {
|
|
|
|
}
|
|
|
|
|
2017-01-28 12:05:25 -08:00
|
|
|
// todo: should this be part of more default configurations?
|
2021-11-16 01:15:29 -08:00
|
|
|
void setFrankensoConfiguration() {
|
2023-07-23 22:20:52 -07:00
|
|
|
#if HW_FRANKENSO
|
2023-05-31 22:56:40 -07:00
|
|
|
engineConfiguration->trigger.type = trigger_type_e::TT_ONE_PLUS_ONE;
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2023-02-10 16:09:39 -08:00
|
|
|
commonFrankensoAnalogInputs();
|
2015-07-10 06:01:56 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Frankenso analog #1 PC2 ADC12 CLT
|
|
|
|
* Frankenso analog #2 PC1 ADC11 IAT
|
|
|
|
* Frankenso analog #3 PA0 ADC0 MAP
|
|
|
|
* Frankenso analog #4 PC3 ADC13 WBO / O2
|
|
|
|
* Frankenso analog #5 PA2 ADC2 TPS
|
|
|
|
* Frankenso analog #6 PA1 ADC1
|
|
|
|
* Frankenso analog #7 PA4 ADC4
|
|
|
|
* Frankenso analog #8 PA3 ADC3
|
|
|
|
* Frankenso analog #9 PA7 ADC7
|
|
|
|
* Frankenso analog #10 PA6 ADC6
|
|
|
|
* Frankenso analog #11 PC5 ADC15
|
|
|
|
* Frankenso analog #12 PC4 ADC14 VBatt
|
|
|
|
*/
|
2019-06-30 11:28:47 -07:00
|
|
|
engineConfiguration->tps1_1AdcChannel = EFI_ADC_2; // PA2
|
2015-07-10 06:01:56 -07:00
|
|
|
|
|
|
|
engineConfiguration->map.sensor.hwChannel = EFI_ADC_0;
|
|
|
|
|
|
|
|
engineConfiguration->clt.adcChannel = EFI_ADC_12;
|
|
|
|
engineConfiguration->iat.adcChannel = EFI_ADC_11;
|
|
|
|
engineConfiguration->afr.hwChannel = EFI_ADC_13;
|
|
|
|
|
2019-10-02 18:00:10 -07:00
|
|
|
setCommonNTCSensor(&engineConfiguration->clt, 2700);
|
|
|
|
setCommonNTCSensor(&engineConfiguration->iat, 2700);
|
2015-07-10 06:01:56 -07:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* http://rusefi.com/wiki/index.php?title=Manual:Hardware_Frankenso_board
|
|
|
|
*/
|
|
|
|
// Frankenso low out #1: PE6
|
|
|
|
// Frankenso low out #2: PE5
|
|
|
|
// Frankenso low out #3: PD7 Main Relay
|
|
|
|
// Frankenso low out #4: PC13 Idle valve solenoid
|
|
|
|
// Frankenso low out #5: PE3
|
|
|
|
// Frankenso low out #6: PE4 fuel pump relay
|
|
|
|
// Frankenso low out #7: PE1 (do not use with discovery!)
|
|
|
|
// Frankenso low out #8: PE2 injector #2
|
|
|
|
// Frankenso low out #9: PB9 injector #1
|
|
|
|
// Frankenso low out #10: PE0 (do not use with discovery!)
|
|
|
|
// Frankenso low out #11: PB8 injector #3
|
|
|
|
// Frankenso low out #12: PB7 injector #4
|
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->fuelPumpPin = Gpio::E4;
|
|
|
|
engineConfiguration->mainRelayPin = Gpio::D7;
|
|
|
|
engineConfiguration->idle.solenoidPin = Gpio::C13;
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->fanPin = Gpio::E5;
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->injectionPins[0] = Gpio::B9; // #1
|
|
|
|
engineConfiguration->injectionPins[1] = Gpio::E2; // #2
|
|
|
|
engineConfiguration->injectionPins[2] = Gpio::B8; // #3
|
2019-02-06 15:53:43 -08:00
|
|
|
#ifndef EFI_INJECTOR_PIN3
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->injectionPins[3] = Gpio::B7; // #4
|
2019-02-06 15:53:43 -08:00
|
|
|
#else /* EFI_INJECTOR_PIN3 */
|
2019-12-11 14:48:55 -08:00
|
|
|
engineConfiguration->injectionPins[3] = EFI_INJECTOR_PIN3; // #4
|
2019-02-06 15:53:43 -08:00
|
|
|
#endif /* EFI_INJECTOR_PIN3 */
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2021-11-16 01:15:29 -08:00
|
|
|
setAlgorithm(LM_SPEED_DENSITY);
|
2016-01-08 12:01:38 -08:00
|
|
|
|
2015-07-10 06:01:56 -07:00
|
|
|
#if EFI_PWM_TESTER
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->injectionPins[4] = Gpio::C8; // #5
|
|
|
|
engineConfiguration->injectionPins[5] = Gpio::D10; // #6
|
|
|
|
engineConfiguration->injectionPins[6] = Gpio::D9;
|
|
|
|
engineConfiguration->injectionPins[7] = Gpio::D11;
|
|
|
|
engineConfiguration->injectionPins[8] = Gpio::D0;
|
|
|
|
engineConfiguration->injectionPins[9] = Gpio::B11;
|
|
|
|
engineConfiguration->injectionPins[10] = Gpio::C7;
|
|
|
|
engineConfiguration->injectionPins[11] = Gpio::E4;
|
2015-07-10 06:01:56 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* We want to initialize all outputs for test
|
|
|
|
*/
|
2023-04-28 18:01:08 -07:00
|
|
|
engineConfiguration->cylindersCount = 12;
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2017-12-03 12:37:52 -08:00
|
|
|
#else /* EFI_PWM_TESTER */
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->injectionPins[4] = Gpio::Unassigned;
|
|
|
|
engineConfiguration->injectionPins[5] = Gpio::Unassigned;
|
|
|
|
engineConfiguration->injectionPins[6] = Gpio::Unassigned;
|
|
|
|
engineConfiguration->injectionPins[7] = Gpio::Unassigned;
|
|
|
|
engineConfiguration->injectionPins[8] = Gpio::Unassigned;
|
|
|
|
engineConfiguration->injectionPins[9] = Gpio::Unassigned;
|
|
|
|
engineConfiguration->injectionPins[10] = Gpio::Unassigned;
|
|
|
|
engineConfiguration->injectionPins[11] = Gpio::Unassigned;
|
|
|
|
|
|
|
|
engineConfiguration->ignitionPins[0] = Gpio::E14;
|
|
|
|
engineConfiguration->ignitionPins[1] = Gpio::C7;
|
|
|
|
engineConfiguration->ignitionPins[2] = Gpio::C9;
|
2017-03-21 19:45:15 -07:00
|
|
|
// set_ignition_pin 4 PE10
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->ignitionPins[3] = Gpio::E10;
|
2017-12-03 12:37:52 -08:00
|
|
|
#endif /* EFI_PWM_TESTER */
|
2015-07-10 06:01:56 -07:00
|
|
|
|
|
|
|
// todo: 8.2 or 10k?
|
|
|
|
engineConfiguration->vbattDividerCoeff = ((float) (10 + 33)) / 10 * 2;
|
2023-07-23 22:20:52 -07:00
|
|
|
#endif // HW_FRANKENSO
|
2015-07-10 06:01:56 -07:00
|
|
|
}
|
|
|
|
|
2020-02-18 14:53:56 -08:00
|
|
|
/**
|
|
|
|
* set engine_type 49
|
|
|
|
*/
|
2021-11-16 01:15:29 -08:00
|
|
|
void setFrankensoBoardTestConfiguration() {
|
|
|
|
setFrankensoConfiguration();
|
2017-02-24 15:55:53 -08:00
|
|
|
|
2023-03-27 01:13:04 -07:00
|
|
|
engineConfiguration->triggerSimulatorRpm = 300;
|
2017-12-03 15:29:52 -08:00
|
|
|
engineConfiguration->cranking.rpm = 100;
|
2017-12-02 16:47:18 -08:00
|
|
|
|
2023-04-28 18:01:08 -07:00
|
|
|
engineConfiguration->cylindersCount = 12;
|
|
|
|
engineConfiguration->firingOrder = FO_1_7_5_11_3_9_6_12_2_8_4_10;
|
2017-02-24 15:55:53 -08:00
|
|
|
|
2017-03-21 19:45:15 -07:00
|
|
|
// set ignition_mode 1
|
|
|
|
engineConfiguration->ignitionMode = IM_INDIVIDUAL_COILS;
|
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->injectionPins[0] = Gpio::B7; // injector in default pinout
|
|
|
|
engineConfiguration->injectionPins[1] = Gpio::B8; // injector in default pinout
|
|
|
|
engineConfiguration->injectionPins[2] = Gpio::B9; // injector in default pinout
|
|
|
|
engineConfiguration->injectionPins[3] = Gpio::C13;
|
|
|
|
|
|
|
|
engineConfiguration->injectionPins[4] = Gpio::D3;
|
|
|
|
engineConfiguration->injectionPins[5] = Gpio::D5;
|
|
|
|
engineConfiguration->injectionPins[6] = Gpio::D7;
|
|
|
|
engineConfiguration->injectionPins[7] = Gpio::E2; // injector in default pinout
|
|
|
|
engineConfiguration->injectionPins[8] = Gpio::E3;
|
|
|
|
engineConfiguration->injectionPins[9] = Gpio::E4;
|
|
|
|
engineConfiguration->injectionPins[10] = Gpio::E5;
|
|
|
|
engineConfiguration->injectionPins[11] = Gpio::E6;
|
|
|
|
|
|
|
|
engineConfiguration->fuelPumpPin = Gpio::Unassigned;
|
|
|
|
engineConfiguration->mainRelayPin = Gpio::Unassigned;
|
|
|
|
engineConfiguration->idle.solenoidPin = Gpio::Unassigned;
|
|
|
|
engineConfiguration->fanPin = Gpio::Unassigned;
|
|
|
|
|
|
|
|
|
|
|
|
engineConfiguration->ignitionPins[0] = Gpio::C9; // coil in default pinout
|
|
|
|
engineConfiguration->ignitionPins[1] = Gpio::C7; // coil in default pinout
|
|
|
|
engineConfiguration->ignitionPins[2] = Gpio::E10; // coil in default pinout
|
|
|
|
engineConfiguration->ignitionPins[3] = Gpio::E8; // Miata VVT tach
|
|
|
|
|
|
|
|
engineConfiguration->ignitionPins[4] = Gpio::E14; // coil in default pinout
|
|
|
|
engineConfiguration->ignitionPins[5] = Gpio::E12;
|
|
|
|
engineConfiguration->ignitionPins[6] = Gpio::D8;
|
|
|
|
engineConfiguration->ignitionPins[7] = Gpio::D9;
|
|
|
|
|
|
|
|
engineConfiguration->ignitionPins[8] = Gpio::E0; // brain board, not discovery
|
|
|
|
engineConfiguration->ignitionPins[9] = Gpio::E1; // brain board, not discovery
|
2017-02-24 15:55:53 -08:00
|
|
|
}
|
|
|
|
|
2019-05-04 06:57:57 -07:00
|
|
|
|
2019-03-02 11:00:32 -08:00
|
|
|
// ETB_BENCH_ENGINE
|
2019-04-21 11:11:39 -07:00
|
|
|
// set engine_type 58
|
2021-11-16 01:15:29 -08:00
|
|
|
void setEtbTestConfiguration() {
|
2019-03-02 10:21:12 -08:00
|
|
|
// VAG test ETB
|
|
|
|
// set tps_min 54
|
|
|
|
engineConfiguration->tpsMin = 54;
|
|
|
|
// by the way this ETB has default position of ADC=74 which is about 4%
|
|
|
|
// set tps_max 540
|
|
|
|
engineConfiguration->tpsMax = 540;
|
|
|
|
|
2019-11-24 17:48:25 -08:00
|
|
|
// yes, 30K - that's a test configuration
|
|
|
|
engineConfiguration->rpmHardLimit = 30000;
|
|
|
|
|
2022-04-02 23:21:37 -07:00
|
|
|
setCrankOperationMode();
|
2023-05-31 22:56:40 -07:00
|
|
|
engineConfiguration->trigger.type = trigger_type_e::TT_TOOTHED_WHEEL_60_2;
|
2019-11-24 17:48:25 -08:00
|
|
|
|
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->ignitionPins[0] = Gpio::Unassigned;
|
|
|
|
engineConfiguration->ignitionPins[1] = Gpio::Unassigned;
|
|
|
|
engineConfiguration->ignitionPins[2] = Gpio::Unassigned;
|
|
|
|
engineConfiguration->ignitionPins[3] = Gpio::Unassigned;
|
2019-02-27 06:57:03 -08:00
|
|
|
/**
|
|
|
|
* remember that some H-bridges require 5v control lines, not just 3v logic outputs we have on stm32
|
|
|
|
*/
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->etbIo[0].directionPin1 = Gpio::C7; // Frankenso high-side in order to get 5v control
|
|
|
|
engineConfiguration->etbIo[0].directionPin2 = Gpio::C9;
|
|
|
|
engineConfiguration->etbIo[0].controlPin = Gpio::E14;
|
2019-02-27 14:54:25 -08:00
|
|
|
|
2019-04-12 19:10:57 -07:00
|
|
|
#if EFI_ELECTRONIC_THROTTLE_BODY
|
2021-11-16 01:15:29 -08:00
|
|
|
setBoschVNH2SP30Curve();
|
2019-03-29 07:29:01 -07:00
|
|
|
#endif /* EFI_ELECTRONIC_THROTTLE_BODY */
|
2019-02-27 06:57:03 -08:00
|
|
|
|
2019-06-30 11:28:47 -07:00
|
|
|
engineConfiguration->tps1_1AdcChannel = EFI_ADC_2; // PA2
|
2019-02-27 06:57:03 -08:00
|
|
|
engineConfiguration->throttlePedalPositionAdcChannel = EFI_ADC_9; // PB1
|
|
|
|
|
2019-03-02 19:42:11 -08:00
|
|
|
// turning off other PWMs to simplify debugging
|
2023-03-27 01:13:04 -07:00
|
|
|
engineConfiguration->triggerSimulatorRpm = 0;
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->stepperEnablePin = Gpio::Unassigned;
|
|
|
|
engineConfiguration->idle.stepperStepPin = Gpio::Unassigned;
|
|
|
|
engineConfiguration->idle.stepperDirectionPin = Gpio::Unassigned;
|
2019-12-11 14:48:55 -08:00
|
|
|
engineConfiguration->useStepperIdle = true;
|
2019-03-02 19:42:11 -08:00
|
|
|
|
2019-05-04 08:01:05 -07:00
|
|
|
// no analog dividers - all sensors with 3v supply, naked discovery bench setup
|
|
|
|
engineConfiguration->analogInputDividerCoefficient = 1;
|
|
|
|
|
|
|
|
// EFI_ADC_15 = PC5
|
2019-03-10 21:31:06 -07:00
|
|
|
engineConfiguration->clt.adcChannel = EFI_ADC_15;
|
2019-10-02 18:00:10 -07:00
|
|
|
set10K_4050K(&engineConfiguration->clt, 10000);
|
2019-03-10 21:31:06 -07:00
|
|
|
|
2019-04-21 09:24:31 -07:00
|
|
|
// see also setDefaultEtbBiasCurve
|
2019-02-27 05:55:56 -08:00
|
|
|
}
|
2019-04-04 18:34:33 -07:00
|
|
|
|
2022-02-06 15:13:35 -08:00
|
|
|
#if HW_FRANKENSO && EFI_PROD_CODE
|
2022-02-06 14:23:42 -08:00
|
|
|
|
|
|
|
|
|
|
|
// todo: page_size + 2
|
|
|
|
// todo: CC_SECTION(".nocache")
|
|
|
|
static uint8_t write_buf[EE_PAGE_SIZE + 10];
|
|
|
|
|
2022-02-06 16:39:21 -08:00
|
|
|
|
2022-02-06 14:23:42 -08:00
|
|
|
#define EEPROM_WRITE_TIME_MS 10 /* time to write one page in ms. Consult datasheet! */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* https://www.onsemi.com/pdf/datasheet/cat24c32-d.pdf
|
|
|
|
* CAT24C32
|
|
|
|
*/
|
|
|
|
static const I2CEepromFileConfig i2cee = {
|
2022-02-06 16:39:21 -08:00
|
|
|
.barrier_low = 0,
|
|
|
|
.barrier_hi = EE_SIZE - 1,
|
|
|
|
.size = EE_SIZE,
|
|
|
|
.pagesize = EE_PAGE_SIZE,
|
|
|
|
.write_time = TIME_MS2I(EEPROM_WRITE_TIME_MS),
|
|
|
|
.i2cp = &EE_U2CD,
|
|
|
|
.addr = 0x50,
|
|
|
|
.write_buf = write_buf
|
2022-02-06 14:23:42 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
extern EepromDevice eepdev_24xx;
|
|
|
|
static I2CEepromFileStream ifile;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* set engine_type 61
|
|
|
|
*/
|
2022-02-06 10:59:08 -08:00
|
|
|
void setEepromTestConfiguration() {
|
2022-02-06 16:39:21 -08:00
|
|
|
engineConfiguration->useEeprom = true;
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->ignitionPins[2] = Gpio::Unassigned;
|
2022-02-06 15:13:35 -08:00
|
|
|
// dirty hack
|
2022-04-28 14:32:39 -07:00
|
|
|
brain_pin_markUnused(Gpio::C9);
|
|
|
|
efiSetPadMode("I2C", Gpio::A8, PAL_MODE_ALTERNATE(4));
|
|
|
|
efiSetPadMode("I2C", Gpio::C9, PAL_MODE_ALTERNATE(4));
|
2022-02-06 14:23:42 -08:00
|
|
|
|
|
|
|
|
|
|
|
addConsoleActionI("ee_read",
|
|
|
|
[](int value) {
|
2022-02-06 16:39:21 -08:00
|
|
|
if (ifile.vmt != eepdev_24xx.efsvmt) {
|
|
|
|
EepromFileOpen((EepromFileStream *)&ifile, (EepromFileConfig *)&i2cee, &eepdev_24xx);
|
|
|
|
}
|
2022-02-06 14:23:42 -08:00
|
|
|
|
|
|
|
ifile.vmt->setposition(&ifile, 0);
|
|
|
|
// chFileStreamSeek(&ifile, 0);
|
|
|
|
int v2;
|
|
|
|
streamRead(&ifile, (uint8_t *)&v2, 4);
|
|
|
|
efiPrintf("EE has %d", v2);
|
|
|
|
|
|
|
|
v2 += 3;
|
|
|
|
ifile.vmt->setposition(&ifile, 0);
|
|
|
|
streamWrite(&ifile, (uint8_t *)&v2, 4);
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2022-02-06 10:59:08 -08:00
|
|
|
}
|
2022-02-06 14:23:42 -08:00
|
|
|
#endif //HW_FRANKENSO
|
2022-02-06 10:59:08 -08:00
|
|
|
|
2022-02-06 10:55:16 -08:00
|
|
|
// F407 discovery
|
|
|
|
void setL9779TestConfiguration() {
|
|
|
|
// enable_spi 3
|
|
|
|
engineConfiguration->is_enabled_spi_3 = true;
|
|
|
|
// Wire up spi3
|
2022-02-09 12:22:27 -08:00
|
|
|
// green
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->spi3mosiPin = Gpio::B5;
|
2022-02-09 12:22:27 -08:00
|
|
|
// blue
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->spi3misoPin = Gpio::B4;
|
2022-02-09 12:22:27 -08:00
|
|
|
// white
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->spi3sckPin = Gpio::B3;
|
2022-02-09 05:00:33 -08:00
|
|
|
|
|
|
|
engineConfiguration->l9779spiDevice = SPI_DEVICE_3;
|
2022-02-09 12:22:27 -08:00
|
|
|
// orange
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->l9779_cs = Gpio::D5;
|
2022-02-06 10:55:16 -08:00
|
|
|
}
|
|
|
|
|
2019-04-04 18:34:33 -07:00
|
|
|
// TLE8888_BENCH_ENGINE
|
2019-12-28 20:22:16 -08:00
|
|
|
// todo: remove this? this was used to play with "secret" red boards prior to MRE reality
|
2019-04-04 18:34:33 -07:00
|
|
|
// set engine_type 59
|
2021-11-16 01:15:29 -08:00
|
|
|
void setTle8888TestConfiguration() {
|
2023-04-28 18:01:08 -07:00
|
|
|
engineConfiguration->cylindersCount = 8;
|
|
|
|
engineConfiguration->firingOrder = FO_1_8_7_2_6_5_4_3;
|
2019-04-04 18:34:33 -07:00
|
|
|
engineConfiguration->ignitionMode = IM_INDIVIDUAL_COILS;
|
|
|
|
engineConfiguration->crankingInjectionMode = IM_SEQUENTIAL;
|
|
|
|
|
2019-07-09 03:06:07 -07:00
|
|
|
#if defined(STM32_HAS_GPIOG) && STM32_HAS_GPIOG
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->ignitionPins[0] = Gpio::G3;
|
|
|
|
engineConfiguration->ignitionPins[1] = Gpio::G4;
|
|
|
|
engineConfiguration->ignitionPins[2] = Gpio::G5;
|
|
|
|
engineConfiguration->ignitionPins[3] = Gpio::G6;
|
|
|
|
engineConfiguration->ignitionPins[4] = Gpio::G7;
|
|
|
|
engineConfiguration->ignitionPins[5] = Gpio::G8;
|
2019-07-09 02:29:03 -07:00
|
|
|
#endif /* STM32_HAS_GPIOG */
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->ignitionPins[6] = Gpio::C6;
|
|
|
|
engineConfiguration->ignitionPins[7] = Gpio::C7;
|
2019-04-04 18:34:33 -07:00
|
|
|
|
2019-07-27 06:37:45 -07:00
|
|
|
#if (BOARD_TLE8888_COUNT > 0)
|
2019-04-04 18:34:33 -07:00
|
|
|
engineConfiguration->tle8888spiDevice = SPI_DEVICE_1;
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->tle8888_cs = Gpio::D5;
|
2019-04-04 18:34:33 -07:00
|
|
|
|
2019-04-06 04:38:02 -07:00
|
|
|
// PB3 is nicely both SWO and SPI1 SCK so logic analyzer could be used on SWO header
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->spi1mosiPin = Gpio::B5;
|
|
|
|
engineConfiguration->spi1misoPin = Gpio::B4;
|
|
|
|
engineConfiguration->spi1sckPin = Gpio::B3; // please note that this pin is also SWO/SWD - Single Wire debug Output
|
2019-12-11 14:48:55 -08:00
|
|
|
engineConfiguration->is_enabled_spi_1 = true;
|
2019-04-04 20:03:32 -07:00
|
|
|
engineConfiguration->debugMode = DBG_TLE8888;
|
2019-04-11 20:21:16 -07:00
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->fuelPumpPin = Gpio::TLE8888_PIN_20;
|
2019-07-27 06:37:45 -07:00
|
|
|
#endif /* BOARD_TLE8888_COUNT */
|
|
|
|
|
2019-04-12 22:03:12 -07:00
|
|
|
engineConfiguration->throttlePedalPositionAdcChannel = EFI_ADC_9; // PB1 // just any non-empty value for now
|
2019-04-11 20:21:16 -07:00
|
|
|
// ETB #1 top one - closer to 121 connector
|
|
|
|
// DIS PF12
|
|
|
|
// EN PF13
|
|
|
|
// IN1 PF15
|
|
|
|
// IN2 PF14
|
|
|
|
// SF PF11
|
2019-07-09 03:06:07 -07:00
|
|
|
#if defined(STM32_HAS_GPIOF) && STM32_HAS_GPIOF
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->etbIo[0].directionPin1 = Gpio::F15;
|
|
|
|
engineConfiguration->etbIo[0].directionPin2 = Gpio::F14;
|
|
|
|
engineConfiguration->etbIo[0].disablePin = Gpio::F12;
|
2019-07-09 02:29:03 -07:00
|
|
|
#endif /* STM32_HAS_GPIOF */
|
2021-11-17 00:54:21 -08:00
|
|
|
engineConfiguration->etb_use_two_wires = true;
|
2019-12-11 14:48:55 -08:00
|
|
|
engineConfiguration->isHip9011Enabled = false;
|
2019-04-11 20:21:16 -07:00
|
|
|
|
|
|
|
// ETB #2
|
|
|
|
// DIS PE5
|
|
|
|
// EN PE6
|
|
|
|
// IN1 PE2
|
|
|
|
// IN2 PE4
|
|
|
|
// SF PE3
|
2022-02-01 21:49:44 -08:00
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->etbIo[0].directionPin1 = Gpio::E2;
|
|
|
|
engineConfiguration->etbIo[0].directionPin2 = Gpio::E4;
|
|
|
|
engineConfiguration->etbIo[0].disablePin = Gpio::E5;
|
2019-04-11 20:21:16 -07:00
|
|
|
|
2019-04-21 11:00:19 -07:00
|
|
|
|
2019-06-30 11:28:47 -07:00
|
|
|
engineConfiguration->tps1_1AdcChannel = EFI_ADC_3; // PA3
|
2019-04-24 20:46:49 -07:00
|
|
|
engineConfiguration->throttlePedalPositionAdcChannel = EFI_ADC_7; // PA7
|
|
|
|
|
2019-05-05 09:48:04 -07:00
|
|
|
// engineConfiguration->etb.pFactor = 1.07;
|
|
|
|
// engineConfiguration->etb.iFactor = 0.18;
|
|
|
|
// engineConfiguration->etb.dFactor = 0.24;
|
|
|
|
// engineConfiguration->etb.offset = 80;
|
|
|
|
|
|
|
|
engineConfiguration->etb.pFactor = 22;
|
|
|
|
engineConfiguration->etb.iFactor = 0;
|
|
|
|
engineConfiguration->etb.dFactor = 0;
|
|
|
|
engineConfiguration->etb.offset = 0;
|
|
|
|
|
2019-04-24 20:46:49 -07:00
|
|
|
engineConfiguration->etb_iTermMin = -300;
|
|
|
|
engineConfiguration->etb_iTermMax = 300;
|
|
|
|
|
|
|
|
// VAG test ETB, no divider on red board - direct 3v TPS sensor
|
|
|
|
// set tps_min 332
|
|
|
|
engineConfiguration->tpsMin = 332;
|
|
|
|
// by the way this ETB has default position of ADC=74 which is about 4%
|
|
|
|
// set tps_max 540
|
|
|
|
engineConfiguration->tpsMax = 799;
|
2019-04-04 18:34:33 -07:00
|
|
|
}
|
|
|
|
|
2020-12-25 21:57:23 -08:00
|
|
|
#if HW_PROTEUS
|
2023-02-18 19:17:50 -08:00
|
|
|
/*
|
|
|
|
* set engine_type 96
|
|
|
|
*/
|
|
|
|
|
2023-02-13 14:46:12 -08:00
|
|
|
void proteusDcWastegateTest() {
|
|
|
|
engineConfiguration->isBoostControlEnabled = true;
|
2023-02-18 19:39:45 -08:00
|
|
|
engineConfiguration->etbFunctions[0] = DC_Wastegate;
|
|
|
|
engineConfiguration->etbFunctions[1] = DC_None;
|
2023-02-13 14:46:12 -08:00
|
|
|
engineConfiguration->map.sensor.hwChannel = EFI_ADC_NONE;
|
|
|
|
|
2023-02-18 19:17:50 -08:00
|
|
|
engineConfiguration->tps1_1AdcChannel = EFI_ADC_10;
|
|
|
|
setTPS1Calibration(98, 926, 891, 69);
|
|
|
|
|
|
|
|
engineConfiguration->wastegatePositionSensor = EFI_ADC_6;
|
|
|
|
engineConfiguration->wastegatePositionMin = 700;
|
|
|
|
engineConfiguration->wastegatePositionMax = 4000;
|
|
|
|
|
2023-02-13 14:46:12 -08:00
|
|
|
strncpy(config->luaScript, R"(
|
|
|
|
|
|
|
|
mapSensor = Sensor.new("map")
|
|
|
|
mapSensor : setTimeout(3000)
|
|
|
|
|
|
|
|
function onTick()
|
2023-02-13 16:17:47 -08:00
|
|
|
local tps = getSensor("TPS1")
|
|
|
|
tps = (tps == nil and 0 or tps)
|
|
|
|
mapSensor : set(tps)
|
2023-02-13 14:46:12 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
)", efi::size(config->luaScript));
|
|
|
|
}
|
|
|
|
|
2020-12-26 07:41:33 -08:00
|
|
|
/**
|
|
|
|
* PROTEUS_QC_TEST_BOARD
|
|
|
|
* set engine_type 42
|
|
|
|
*/
|
2021-11-16 01:15:29 -08:00
|
|
|
void proteusBoardTest() {
|
2023-04-28 18:01:08 -07:00
|
|
|
engineConfiguration->cylindersCount = 12;
|
|
|
|
engineConfiguration->firingOrder = FO_1_2_3_4_5_6_7_8_9_10_11_12;
|
2023-03-27 01:13:04 -07:00
|
|
|
engineConfiguration->triggerSimulatorRpm = 600;
|
2022-10-01 19:07:44 -07:00
|
|
|
engineConfiguration->injector.flow = 4.6; // longer blink
|
2020-12-25 21:57:23 -08:00
|
|
|
|
2020-12-26 10:41:33 -08:00
|
|
|
engineConfiguration->cranking.rpm = 100;
|
|
|
|
engineConfiguration->injectionMode = IM_SEQUENTIAL;
|
|
|
|
engineConfiguration->crankingInjectionMode = IM_SEQUENTIAL;
|
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->mainRelayPin = Gpio::Unassigned;
|
|
|
|
engineConfiguration->fanPin = Gpio::Unassigned;
|
|
|
|
engineConfiguration->fuelPumpPin = Gpio::Unassigned;
|
2020-12-26 10:41:33 -08:00
|
|
|
|
2021-10-02 21:27:55 -07:00
|
|
|
#if EFI_PROD_CODE
|
2023-08-27 20:10:13 -07:00
|
|
|
engineConfiguration->injectionPins[0] = Gpio::PROTEUS_LS_1;
|
|
|
|
engineConfiguration->injectionPins[1] = Gpio::PROTEUS_LS_2;
|
|
|
|
engineConfiguration->injectionPins[2] = Gpio::PROTEUS_LS_3;
|
|
|
|
engineConfiguration->injectionPins[3] = Gpio::PROTEUS_LS_4;
|
|
|
|
engineConfiguration->injectionPins[4] = Gpio::PROTEUS_LS_5;
|
|
|
|
engineConfiguration->injectionPins[5] = Gpio::PROTEUS_LS_6;
|
|
|
|
engineConfiguration->injectionPins[6] = Gpio::PROTEUS_LS_9;
|
|
|
|
engineConfiguration->injectionPins[7] = Gpio::PROTEUS_LS_8;
|
|
|
|
engineConfiguration->injectionPins[8] = Gpio::PROTEUS_LS_11;
|
|
|
|
engineConfiguration->injectionPins[9] = Gpio::PROTEUS_LS_10;
|
|
|
|
engineConfiguration->injectionPins[10] = Gpio::PROTEUS_LS_12;
|
|
|
|
engineConfiguration->injectionPins[11] = Gpio::PROTEUS_LS_13;
|
|
|
|
|
|
|
|
|
|
|
|
engineConfiguration->luaOutputPins[0] = Gpio::PROTEUS_LS_7;
|
|
|
|
engineConfiguration->luaOutputPins[1] = Gpio::PROTEUS_LS_14;
|
|
|
|
engineConfiguration->luaOutputPins[2] = Gpio::PROTEUS_LS_15;
|
|
|
|
engineConfiguration->luaOutputPins[3] = Gpio::PROTEUS_LS_16;
|
2023-08-29 19:07:02 -07:00
|
|
|
engineConfiguration->luaOutputPins[4] = Gpio::PROTEUS_HS_2;
|
|
|
|
engineConfiguration->luaOutputPins[5] = Gpio::PROTEUS_HS_4;
|
2020-12-26 07:41:33 -08:00
|
|
|
|
2023-08-27 20:10:13 -07:00
|
|
|
engineConfiguration->ignitionPins[0] = Gpio::PROTEUS_IGN_1;
|
|
|
|
engineConfiguration->ignitionPins[1] = Gpio::PROTEUS_IGN_2;
|
2023-08-29 19:07:02 -07:00
|
|
|
engineConfiguration->ignitionPins[2] = Gpio::PROTEUS_IGN_4;
|
|
|
|
engineConfiguration->ignitionPins[3] = Gpio::PROTEUS_IGN_5;
|
|
|
|
engineConfiguration->ignitionPins[4] = Gpio::PROTEUS_IGN_6;
|
|
|
|
engineConfiguration->ignitionPins[5] = Gpio::PROTEUS_IGN_7;
|
|
|
|
|
|
|
|
engineConfiguration->ignitionPins[6] = Gpio::PROTEUS_HS_3;
|
|
|
|
engineConfiguration->ignitionPins[7] = Gpio::PROTEUS_IGN_3;
|
|
|
|
engineConfiguration->ignitionPins[8] = Gpio::PROTEUS_IGN_9;
|
|
|
|
engineConfiguration->ignitionPins[9] = Gpio::PROTEUS_IGN_8;
|
|
|
|
engineConfiguration->ignitionPins[10] = Gpio::PROTEUS_HS_1;
|
2023-08-27 20:10:13 -07:00
|
|
|
engineConfiguration->ignitionPins[11] = Gpio::PROTEUS_IGN_12;
|
2020-12-26 07:41:33 -08:00
|
|
|
|
2022-10-01 20:05:11 -07:00
|
|
|
strncpy(config->luaScript, R"(
|
|
|
|
startPwm(0, 10, 0.5)
|
|
|
|
startPwm(1, 11, 0.5)
|
|
|
|
startPwm(2, 12, 0.5)
|
|
|
|
startPwm(3, 13, 0.5)
|
|
|
|
startPwm(4, 14, 0.5)
|
|
|
|
startPwm(5, 15, 0.5)
|
|
|
|
startPwm(6, 16, 0.5)
|
|
|
|
startPwm(7, 17, 0.5)
|
|
|
|
|
|
|
|
function onTick()
|
|
|
|
end
|
|
|
|
)", efi::size(config->luaScript));
|
2020-12-26 10:41:33 -08:00
|
|
|
|
2021-10-02 21:27:55 -07:00
|
|
|
#endif // EFI_PROD_CODE
|
2020-12-26 07:41:33 -08:00
|
|
|
|
2021-11-16 01:15:29 -08:00
|
|
|
setProteusHitachiEtbDefaults();
|
2020-12-25 21:57:23 -08:00
|
|
|
}
|
|
|
|
#endif // HW_PROTEUS
|
|
|
|
|
2023-07-14 11:47:05 -07:00
|
|
|
void setBodyControlUnit() {
|
2023-08-05 15:06:38 -07:00
|
|
|
engineConfiguration->trigger.type = trigger_type_e::TT_HALF_MOON;
|
2023-07-14 11:47:05 -07:00
|
|
|
|
|
|
|
engineConfiguration->mapAveragingSchedulingAtIndex = 999; // this should disable map averaging right?
|
|
|
|
|
|
|
|
engineConfiguration->wwaeTau = 0.0;
|
|
|
|
engineConfiguration->wwaeBeta = 0.0;
|
|
|
|
|
2021-07-06 17:14:08 -07:00
|
|
|
for (int i = 0; i < MAX_CYLINDER_COUNT;i++) {
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->ignitionPins[i] = Gpio::Unassigned;
|
|
|
|
engineConfiguration->injectionPins[i] = Gpio::Unassigned;
|
2020-09-06 16:43:54 -07:00
|
|
|
}
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->fanPin = Gpio::Unassigned;
|
2023-04-22 08:57:07 -07:00
|
|
|
engineConfiguration->triggerInputPins[0] = Gpio::Unassigned;
|
|
|
|
|
2021-10-27 16:54:45 -07:00
|
|
|
engineConfiguration->tps1_1AdcChannel = EFI_ADC_NONE;
|
|
|
|
engineConfiguration->tps2_1AdcChannel = EFI_ADC_NONE;
|
|
|
|
engineConfiguration->clt.adcChannel = EFI_ADC_NONE;
|
|
|
|
engineConfiguration->iat.adcChannel = EFI_ADC_NONE;
|
|
|
|
engineConfiguration->map.sensor.hwChannel = EFI_ADC_NONE;
|
2023-07-14 11:47:05 -07:00
|
|
|
}
|
|
|
|
|
2021-10-27 16:54:45 -07:00
|
|
|
|
2023-07-14 11:47:05 -07:00
|
|
|
void mreSecondaryCan() {
|
|
|
|
setBodyControlUnit();
|
2021-10-27 16:54:45 -07:00
|
|
|
|
|
|
|
engineConfiguration->auxAnalogInputs[0] = MRE_IN_TPS;
|
|
|
|
engineConfiguration->auxAnalogInputs[1] = MRE_IN_MAP;
|
|
|
|
engineConfiguration->auxAnalogInputs[2] = MRE_IN_CLT;
|
|
|
|
engineConfiguration->auxAnalogInputs[3] = MRE_IN_IAT;
|
|
|
|
// engineConfiguration->auxAnalogInputs[0] =
|
|
|
|
|
|
|
|
|
|
|
|
// EFI_ADC_14: "32 - AN volt 6"
|
|
|
|
// engineConfiguration->afr.hwChannel = EFI_ADC_14;
|
|
|
|
|
|
|
|
|
2021-11-08 14:31:17 -08:00
|
|
|
strncpy(config->luaScript, R"(
|
|
|
|
txPayload = {}
|
|
|
|
function onTick()
|
|
|
|
auxV = getAuxAnalog(0)
|
|
|
|
print('Hello analog ' .. auxV )
|
|
|
|
-- first byte: integer part, would be autoboxed to int
|
|
|
|
txPayload[1] = auxV
|
|
|
|
-- second byte: fractional part, would be autoboxed to int, overflow would be ignored
|
|
|
|
txPayload[2] = auxV * 256;
|
|
|
|
auxV = getAuxAnalog(1)
|
|
|
|
print('Hello analog ' .. auxV )
|
|
|
|
txPayload[3] = auxV
|
|
|
|
txPayload[4] = auxV * 256;
|
|
|
|
auxV = getAuxAnalog(2)
|
|
|
|
print('Hello analog ' .. auxV )
|
|
|
|
txPayload[5] = auxV
|
|
|
|
txPayload[6] = auxV * 256;
|
|
|
|
txCan(1, 0x600, 1, txPayload)
|
|
|
|
end
|
|
|
|
)", efi::size(config->luaScript));
|
2021-10-27 16:54:45 -07:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-06-03 18:31:32 -07:00
|
|
|
void mreBCM() {
|
|
|
|
mreSecondaryCan();
|
|
|
|
// maybe time to kill this feature is pretty soon?
|
|
|
|
engineConfiguration->consumeObdSensors = true;
|
|
|
|
}
|
|
|
|
|
2020-05-21 18:45:01 -07:00
|
|
|
/**
|
|
|
|
* MRE_BOARD_NEW_TEST
|
|
|
|
* set engine_type 31
|
|
|
|
*/
|
2021-11-16 01:15:29 -08:00
|
|
|
void mreBoardNewTest() {
|
2023-06-03 18:34:14 -07:00
|
|
|
#if (BOARD_TLE8888_COUNT > 0)
|
|
|
|
engineConfiguration->debugMode = DBG_TLE8888;
|
|
|
|
|
|
|
|
engineConfiguration->triggerSimulatorRpm = 202;
|
|
|
|
// set cranking_rpm 500
|
|
|
|
engineConfiguration->cranking.rpm = 100;
|
|
|
|
// set cranking_dwell 200
|
|
|
|
engineConfiguration->ignitionDwellForCrankingMs = 200;
|
|
|
|
// set cranking_fuel 300
|
|
|
|
engineConfiguration->cranking.baseFuel = 190;
|
|
|
|
engineConfiguration->injectionMode = IM_SEQUENTIAL;
|
|
|
|
engineConfiguration->crankingInjectionMode = IM_SEQUENTIAL;
|
|
|
|
|
|
|
|
// EFI_ADC_1: "23 - AN temp 2"
|
|
|
|
// test harness: Red/Green, 2K PD. expected 2.0v
|
|
|
|
// iat in microrusefi/board_configuration.cpp
|
|
|
|
|
|
|
|
// EFI_ADC_2: "24 - AN temp 3"
|
|
|
|
// test harness: Blue/White, 2K PD. expected 2.0v
|
|
|
|
|
|
|
|
|
|
|
|
// EFI_ADC_10: "27 - AN volt 1"
|
|
|
|
// test harness: Blue/Red, 3.84K PD / 5.3 PU. expected 1.6v
|
|
|
|
engineConfiguration->mafAdcChannel = EFI_ADC_10;
|
|
|
|
|
|
|
|
// EFI_ADC_14: "32 - AN volt 6"
|
|
|
|
// test harness: Red/White 3.6K PD / 5.2 PU. expected 1.6v
|
|
|
|
engineConfiguration->throttlePedalPositionAdcChannel = EFI_ADC_14;
|
|
|
|
|
|
|
|
// EFI_ADC_4: "28 - AN volt 10"
|
|
|
|
// test harness: Red/Yellow
|
|
|
|
engineConfiguration->afr.hwChannel = EFI_ADC_4;
|
|
|
|
|
|
|
|
// EFI_ADC_7: "31 - AN volt 3"
|
|
|
|
// test harness: White/Red
|
|
|
|
engineConfiguration->map.sensor.hwChannel = EFI_ADC_7;
|
|
|
|
|
|
|
|
engineConfiguration->fuelPumpPin = Gpio::Unassigned;
|
|
|
|
engineConfiguration->idle.solenoidPin = Gpio::Unassigned;
|
|
|
|
engineConfiguration->fanPin = Gpio::Unassigned;
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* BOARD_TLE8888_COUNT */
|
2020-05-21 18:45:01 -07:00
|
|
|
|
2023-04-28 18:01:08 -07:00
|
|
|
engineConfiguration->cylindersCount = 12;
|
|
|
|
engineConfiguration->firingOrder = FO_1_2_3_4_5_6_7_8_9_10_11_12;
|
2022-10-01 03:12:02 -07:00
|
|
|
engineConfiguration->injector.flow = 5; // longer blink
|
|
|
|
|
2020-05-21 18:45:01 -07:00
|
|
|
|
|
|
|
#if (BOARD_TLE8888_COUNT > 0)
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->ignitionPins[1 - 1] = Gpio::D6;
|
|
|
|
engineConfiguration->ignitionPins[2 - 1] = Gpio::D7;
|
|
|
|
engineConfiguration->ignitionPins[3 - 1] = Gpio::D1;
|
|
|
|
engineConfiguration->ignitionPins[4 - 1] = Gpio::D2;
|
|
|
|
engineConfiguration->ignitionPins[5 - 1] = Gpio::D3;
|
|
|
|
engineConfiguration->ignitionPins[6 - 1] = Gpio::D4;
|
2020-05-23 07:50:32 -07:00
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->ignitionPins[7 - 1] = Gpio::TLE8888_PIN_11;
|
|
|
|
engineConfiguration->ignitionPins[8 - 1] = Gpio::TLE8888_PIN_12;
|
2020-05-23 07:50:32 -07:00
|
|
|
|
2020-08-31 14:15:04 -07:00
|
|
|
// LED #8
|
|
|
|
// TLE8888 half bridges (pushpull, lowside, or high-low) IN12
|
2022-04-28 14:32:39 -07:00
|
|
|
// Gpio::TLE8888_PIN_21: "35 - GP Out 1"
|
|
|
|
engineConfiguration->ignitionPins[9 - 1] = Gpio::TLE8888_PIN_21;
|
2020-08-31 14:15:04 -07:00
|
|
|
|
|
|
|
// LED #1
|
2022-04-28 14:32:39 -07:00
|
|
|
// Gpio::TLE8888_PIN_22: "34 - GP Out 2"
|
|
|
|
engineConfiguration->ignitionPins[10- 1] = Gpio::TLE8888_PIN_22;
|
2020-08-31 14:15:04 -07:00
|
|
|
|
|
|
|
// LED #2
|
2022-04-28 14:32:39 -07:00
|
|
|
// Gpio::TLE8888_PIN_23: "33 - GP Out 3"
|
2023-04-11 08:53:40 -07:00
|
|
|
engineConfiguration->ignitionPins[11 - 1] = MRE_GPOUT_3;
|
2020-08-31 14:15:04 -07:00
|
|
|
|
|
|
|
// LED #7
|
2022-04-28 14:32:39 -07:00
|
|
|
// Gpio::TLE8888_PIN_24: "43 - GP Out 4"
|
|
|
|
engineConfiguration->ignitionPins[12 - 1] = Gpio::TLE8888_PIN_24;
|
2020-08-31 14:15:04 -07:00
|
|
|
|
2020-10-11 16:05:56 -07:00
|
|
|
engineConfiguration->afr.hwChannel = EFI_ADC_6;
|
2020-08-31 11:26:34 -07:00
|
|
|
engineConfiguration->throttlePedalPositionAdcChannel = EFI_ADC_NONE;
|
2020-08-31 10:44:58 -07:00
|
|
|
|
2020-05-21 18:45:01 -07:00
|
|
|
// TLE8888 high current low side: IN10
|
2022-04-28 14:32:39 -07:00
|
|
|
// Gpio::TLE8888_PIN_6: "7 - Lowside 1"
|
|
|
|
engineConfiguration->injectionPins[1 - 1] = Gpio::TLE8888_PIN_6;
|
2020-05-21 18:45:01 -07:00
|
|
|
|
|
|
|
// TLE8888 high current low side: VVT2 IN9 / OUT5
|
2022-04-28 14:32:39 -07:00
|
|
|
// Gpio::TLE8888_PIN_5: "3 - Lowside 2"
|
|
|
|
engineConfiguration->injectionPins[2 - 1] = Gpio::TLE8888_PIN_5;
|
2020-05-21 18:45:01 -07:00
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
// Gpio::TLE8888_PIN_4: INJ#4
|
|
|
|
engineConfiguration->injectionPins[3 - 1] = Gpio::TLE8888_PIN_4;
|
|
|
|
// Gpio::TLE8888_PIN_3: INJ#3
|
|
|
|
engineConfiguration->injectionPins[4 - 1] = Gpio::TLE8888_PIN_3;
|
|
|
|
// Gpio::TLE8888_PIN_2: INJ#2
|
|
|
|
engineConfiguration->injectionPins[5 - 1] = Gpio::TLE8888_PIN_2;
|
|
|
|
// Gpio::TLE8888_PIN_1: LED #3 - INJ#1
|
|
|
|
engineConfiguration->injectionPins[6 - 1] = Gpio::TLE8888_PIN_1;
|
2020-05-21 18:45:01 -07:00
|
|
|
|
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->injectionPins[7 - 1] = Gpio::A4; // AV10
|
|
|
|
engineConfiguration->injectionPins[8 - 1] = Gpio::B1; // AV9
|
|
|
|
engineConfiguration->injectionPins[9 - 1] = Gpio::B0; // AV8
|
|
|
|
engineConfiguration->injectionPins[10 - 1] = Gpio::C4; // AV6
|
2020-05-23 07:50:32 -07:00
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->injectionPins[11- 1] = Gpio::TLE8888_PIN_13;
|
2020-05-23 07:50:32 -07:00
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->injectionPins[12- 1] = Gpio::TLE8888_PIN_10;
|
2020-05-21 18:45:01 -07:00
|
|
|
#endif /* BOARD_TLE8888_COUNT */
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-01-08 22:29:39 -08:00
|
|
|
static const float hardCodedHpfpLobeProfileQuantityBins[16] = {0.0, 1.0, 4.5, 9.5,
|
|
|
|
16.5, 25.0, 34.5, 45.0 ,
|
|
|
|
55.0, 65.5, 75.0, 83.5,
|
|
|
|
90.5, 95.5, 99.0, 100.0};
|
|
|
|
|
|
|
|
static const float hardCodedHpfpLobeProfileAngle[16] = {0.0, 7.5, 16.5, 24.0,
|
|
|
|
32.0 , 40.0, 48.0, 56.0,
|
|
|
|
64.0 , 72.0, 80.0, 88.0,
|
|
|
|
96.0 , 103.5, 112.5, 120.0
|
|
|
|
};
|
|
|
|
|
2021-11-16 01:15:29 -08:00
|
|
|
void setBoschHDEV_5_injectors() {
|
2022-01-08 22:29:39 -08:00
|
|
|
copyArray(engineConfiguration->hpfpLobeProfileQuantityBins, hardCodedHpfpLobeProfileQuantityBins);
|
|
|
|
copyArray(engineConfiguration->hpfpLobeProfileAngle, hardCodedHpfpLobeProfileAngle);
|
2022-01-03 18:31:26 -08:00
|
|
|
setLinearCurve(engineConfiguration->hpfpDeadtimeVoltsBins, 8, 16, 0.5);
|
2022-01-03 15:48:53 -08:00
|
|
|
|
|
|
|
setLinearCurve(engineConfiguration->hpfpTargetRpmBins, 0, 8000, 1);
|
|
|
|
setLinearCurve(engineConfiguration->hpfpTargetLoadBins, 0, 180, 1);
|
|
|
|
setTable(engineConfiguration->hpfpTarget, 5000);
|
|
|
|
|
|
|
|
setLinearCurve(engineConfiguration->hpfpCompensationRpmBins, 0, 8000, 1);
|
|
|
|
setLinearCurve(engineConfiguration->hpfpCompensationLoadBins, 0.005, 0.120, 0.001);
|
|
|
|
|
2020-10-12 21:35:04 -07:00
|
|
|
// This is the configuration for bosch HDEV 5 injectors
|
2020-11-21 22:14:34 -08:00
|
|
|
// all times in microseconds/us
|
2021-11-17 00:54:21 -08:00
|
|
|
engineConfiguration->mc33_hvolt = 65;
|
|
|
|
engineConfiguration->mc33_i_boost = 13000;
|
|
|
|
engineConfiguration->mc33_i_peak = 9400;
|
|
|
|
engineConfiguration->mc33_i_hold = 3700;
|
2022-07-15 23:23:05 -07:00
|
|
|
engineConfiguration->mc33_t_min_boost = 100;
|
|
|
|
engineConfiguration->mc33_t_max_boost = 400;
|
2021-11-17 00:54:21 -08:00
|
|
|
engineConfiguration->mc33_t_peak_off = 10;
|
|
|
|
engineConfiguration->mc33_t_peak_tot = 700;
|
2022-07-15 23:23:05 -07:00
|
|
|
engineConfiguration->mc33_t_bypass = 10;
|
2021-11-17 00:54:21 -08:00
|
|
|
engineConfiguration->mc33_t_hold_off = 60;
|
|
|
|
engineConfiguration->mc33_t_hold_tot = 10000;
|
2022-01-02 23:13:47 -08:00
|
|
|
|
|
|
|
engineConfiguration->mc33_hpfp_i_peak = 5; // A not mA like above
|
|
|
|
engineConfiguration->mc33_hpfp_i_hold = 3;
|
|
|
|
engineConfiguration->mc33_hpfp_i_hold_off = 10; // us
|
|
|
|
engineConfiguration->mc33_hpfp_max_hold = 10; // this value in ms not us
|
2020-10-12 21:35:04 -07:00
|
|
|
}
|
|
|
|
|
2021-07-21 16:55:14 -07:00
|
|
|
/**
|
|
|
|
* set engine_type 107
|
|
|
|
*/
|
2021-11-16 01:15:29 -08:00
|
|
|
void setRotary() {
|
2023-04-28 18:01:08 -07:00
|
|
|
engineConfiguration->cylindersCount = 2;
|
|
|
|
engineConfiguration->firingOrder = FO_1_2;
|
2021-07-21 16:55:14 -07:00
|
|
|
|
2023-05-31 22:56:40 -07:00
|
|
|
engineConfiguration->trigger.type = trigger_type_e::TT_36_2_2_2;
|
2022-04-02 19:55:44 -07:00
|
|
|
// todo: fix UI to make this possible via TS
|
2022-04-02 23:21:37 -07:00
|
|
|
setTwoStrokeOperationMode();
|
2021-07-21 16:55:14 -07:00
|
|
|
|
2021-11-17 00:54:21 -08:00
|
|
|
strcpy(engineConfiguration->engineMake, ENGINE_MAKE_MAZDA);
|
|
|
|
strcpy(engineConfiguration->engineCode, "13B");
|
|
|
|
strcpy(engineConfiguration->vehicleName, "test");
|
2021-07-21 16:55:14 -07:00
|
|
|
|
|
|
|
engineConfiguration->ignitionMode = IM_INDIVIDUAL_COILS;
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->injectionPins[2] = Gpio::Unassigned; // injector in default pinout
|
|
|
|
engineConfiguration->injectionPins[3] = Gpio::Unassigned;
|
2021-07-21 16:55:14 -07:00
|
|
|
|
|
|
|
engineConfiguration->enableTrailingSparks = true;
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->trailingCoilPins[0] = Gpio::C9;
|
|
|
|
engineConfiguration->trailingCoilPins[1] = Gpio::E10;
|
2021-07-21 16:55:14 -07:00
|
|
|
}
|
2020-05-21 18:45:01 -07:00
|
|
|
|
2020-02-25 19:38:08 -08:00
|
|
|
/**
|
|
|
|
* set engine_type 103
|
|
|
|
*/
|
2021-11-16 01:15:29 -08:00
|
|
|
void setTest33816EngineConfiguration() {
|
2020-02-25 18:35:21 -08:00
|
|
|
|
2020-02-25 19:38:08 -08:00
|
|
|
// grey
|
|
|
|
// default spi3mosiPin PB5
|
|
|
|
// white
|
|
|
|
// default spi3misoPin PB4
|
|
|
|
// violet
|
|
|
|
// default spi3sckPin PB3
|
|
|
|
|
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->triggerSimulatorPins[0] = Gpio::Unassigned;
|
|
|
|
engineConfiguration->triggerSimulatorPins[1] = Gpio::Unassigned;
|
2020-04-14 16:23:53 -07:00
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->injectionPins[0] = Gpio::B9; // #1
|
|
|
|
engineConfiguration->injectionPins[1] = Gpio::E2; // #2
|
|
|
|
engineConfiguration->injectionPins[2] = Gpio::B8; // #3
|
|
|
|
engineConfiguration->injectionPins[3] = Gpio::B7; // #4
|
2020-04-15 13:20:18 -07:00
|
|
|
|
|
|
|
|
2020-02-25 19:38:08 -08:00
|
|
|
// blue
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->mc33816_cs = Gpio::D7;
|
2020-02-25 19:38:08 -08:00
|
|
|
// green
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->mc33816_rstb = Gpio::D4;
|
|
|
|
engineConfiguration->sdCardCsPin = Gpio::Unassigned;
|
2020-02-25 19:38:08 -08:00
|
|
|
// yellow
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->mc33816_driven = Gpio::D6;
|
2020-02-25 18:35:21 -08:00
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->mc33816_flag0 = Gpio::D3;
|
2020-04-13 16:01:22 -07:00
|
|
|
|
2020-02-25 19:38:08 -08:00
|
|
|
// enable_spi 3
|
2021-11-17 00:54:21 -08:00
|
|
|
engineConfiguration->is_enabled_spi_3 = true;
|
2020-02-25 19:38:08 -08:00
|
|
|
// Wire up spi3
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->spi3mosiPin = Gpio::B5;
|
|
|
|
engineConfiguration->spi3misoPin = Gpio::B4;
|
|
|
|
engineConfiguration->spi3sckPin = Gpio::B3;
|
2020-02-25 19:38:08 -08:00
|
|
|
|
2021-11-17 00:54:21 -08:00
|
|
|
engineConfiguration->isSdCardEnabled = false;
|
2020-02-25 18:35:21 -08:00
|
|
|
|
2021-11-17 00:54:21 -08:00
|
|
|
engineConfiguration->mc33816spiDevice = SPI_DEVICE_3;
|
2021-11-16 01:15:29 -08:00
|
|
|
setBoschHDEV_5_injectors();
|
2020-02-25 18:35:21 -08:00
|
|
|
}
|
2021-04-10 20:30:36 -07:00
|
|
|
|
2021-11-16 01:15:29 -08:00
|
|
|
void proteusLuaDemo() {
|
2021-11-08 14:31:17 -08:00
|
|
|
#if HW_PROTEUS
|
|
|
|
engineConfiguration->tpsMin = 889;
|
|
|
|
engineConfiguration->tpsMax = 67;
|
|
|
|
|
|
|
|
engineConfiguration->tps1SecondaryMin = 105;
|
|
|
|
engineConfiguration->tps1SecondaryMax = 933;
|
|
|
|
|
2021-11-10 19:27:21 -08:00
|
|
|
strcpy(engineConfiguration->scriptCurveName[2 - 1], "rateofchange");
|
|
|
|
|
2021-11-08 14:31:17 -08:00
|
|
|
strcpy(engineConfiguration->scriptCurveName[3 - 1], "bias");
|
|
|
|
|
|
|
|
/**
|
|
|
|
* for this demo I use ETB just a sample object to control with PID. No reasonable person should consider actually using
|
|
|
|
* Lua for actual intake ETB control while driving around the racing track - hard-coded ETB control is way smarter!
|
|
|
|
*/
|
|
|
|
static const float defaultBiasBins[] = {
|
|
|
|
0, 1, 2, 4, 7, 98, 99, 100
|
|
|
|
};
|
|
|
|
static const float defaultBiasValues[] = {
|
|
|
|
-20, -18, -17, 0, 20, 21, 22, 25
|
|
|
|
};
|
|
|
|
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->luaOutputPins[0] = Gpio::D12;
|
|
|
|
engineConfiguration->luaOutputPins[1] = Gpio::D10;
|
|
|
|
engineConfiguration->luaOutputPins[2] = Gpio::D11;
|
2021-11-08 14:31:17 -08:00
|
|
|
|
2022-05-01 20:43:43 -07:00
|
|
|
setLinearCurve(config->scriptCurve2Bins, 0, 8000, 1);
|
|
|
|
setLinearCurve(config->scriptCurve2, 0, 100, 1);
|
2021-11-10 19:27:21 -08:00
|
|
|
|
2022-05-01 20:43:43 -07:00
|
|
|
copyArray(config->scriptCurve3Bins, defaultBiasBins);
|
|
|
|
copyArray(config->scriptCurve3, defaultBiasValues);
|
2021-11-08 14:31:17 -08:00
|
|
|
|
2021-11-10 19:27:21 -08:00
|
|
|
engineConfiguration->auxAnalogInputs[0] = PROTEUS_IN_ANALOG_VOLT_10;
|
|
|
|
engineConfiguration->afr.hwChannel = EFI_ADC_NONE;
|
2021-11-08 14:31:17 -08:00
|
|
|
|
2021-11-11 21:19:33 -08:00
|
|
|
|
2021-11-08 14:31:17 -08:00
|
|
|
// ETB direction #1 PD10
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->etbIo[0].directionPin1 = Gpio::Unassigned;
|
2021-11-08 14:31:17 -08:00
|
|
|
// ETB control PD12
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->etbIo[0].controlPin = Gpio::Unassigned;
|
2021-11-08 14:31:17 -08:00
|
|
|
// ETB disable PD11
|
2022-04-28 14:32:39 -07:00
|
|
|
engineConfiguration->etbIo[0].disablePin = Gpio::Unassigned;
|
2021-11-08 14:31:17 -08:00
|
|
|
|
2021-11-12 10:45:07 -08:00
|
|
|
/**
|
2021-11-11 21:19:33 -08:00
|
|
|
controlIndex = 0
|
|
|
|
directionIndex = 1
|
|
|
|
|
2021-11-12 10:45:07 -08:00
|
|
|
print('pid output ' .. output)
|
|
|
|
print('')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
local duty = (bias + output) / 100
|
|
|
|
|
|
|
|
-- isPositive = duty > 0;
|
|
|
|
-- pwmValue = isPositive and duty or -duty
|
|
|
|
-- setPwmDuty(controlIndex, pwmValue)
|
|
|
|
|
|
|
|
-- dirValue = isPositive and 1 or 0;
|
|
|
|
-- setPwmDuty(directionIndex, dirValue)
|
|
|
|
|
|
|
|
-- print('pwm ' .. pwmValue .. ' dir ' .. dirValue)
|
|
|
|
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
auto script = R"(
|
|
|
|
|
2021-11-11 16:16:04 -08:00
|
|
|
startPwm(0, 800, 0.1)
|
2021-11-08 18:29:09 -08:00
|
|
|
-- direction
|
|
|
|
startPwm(1, 80, 1.0)
|
|
|
|
-- disable
|
|
|
|
startPwm(2, 80, 0.0)
|
|
|
|
|
2021-11-13 00:18:16 -08:00
|
|
|
pid = Pid.new(2, 0, 0, -100, 100)
|
2021-11-11 16:16:04 -08:00
|
|
|
|
2021-11-11 21:19:33 -08:00
|
|
|
biasCurveIndex = findCurveIndex("bias")
|
|
|
|
|
2021-11-13 13:41:20 -08:00
|
|
|
voltageFromCan = nil
|
|
|
|
canRxAdd(0x600)
|
|
|
|
|
|
|
|
function onCanRx(bus, id, dlc, data)
|
|
|
|
print('got CAN id=' .. id .. ' dlc=' .. dlc)
|
|
|
|
voltageFromCan = data[2] / 256.0 + data[1]
|
2021-11-13 01:44:04 -08:00
|
|
|
end
|
|
|
|
|
2021-11-08 18:29:09 -08:00
|
|
|
function onTick()
|
2021-11-12 10:11:32 -08:00
|
|
|
local targetVoltage = getAuxAnalog(0)
|
2021-11-11 16:16:04 -08:00
|
|
|
|
2021-11-13 13:41:20 -08:00
|
|
|
-- local target = interpolate(1, 0, 3.5, 100, targetVoltage)
|
|
|
|
local target = interpolate(1, 0, 3.5, 100, voltageFromCan)
|
2021-11-11 16:16:04 -08:00
|
|
|
-- clamp 0 to 100
|
|
|
|
target = math.max(0, target)
|
|
|
|
target = math.min(100, target)
|
|
|
|
|
|
|
|
print('Decoded target: ' .. target)
|
|
|
|
|
2021-11-12 10:11:32 -08:00
|
|
|
local tps = getSensor("TPS1")
|
2021-11-11 16:16:04 -08:00
|
|
|
tps = (tps == nil and 'invalid TPS' or tps)
|
|
|
|
print('Tps ' .. tps)
|
|
|
|
|
2021-11-13 00:18:16 -08:00
|
|
|
local output = pid:get(target, tps)
|
2021-11-11 16:16:04 -08:00
|
|
|
|
2021-11-12 10:11:32 -08:00
|
|
|
local bias = curve(biasCurveIndex, target)
|
2021-11-11 21:19:33 -08:00
|
|
|
print('bias ' .. bias)
|
|
|
|
|
2021-11-13 07:02:45 -08:00
|
|
|
local duty = (bias + output) / 100
|
|
|
|
isPositive = duty > 0;
|
|
|
|
pwmValue = isPositive and duty or -duty
|
|
|
|
setPwmDuty(0, pwmValue)
|
|
|
|
|
|
|
|
dirValue = isPositive and 1 or 0;
|
|
|
|
setPwmDuty(1, dirValue)
|
|
|
|
|
|
|
|
print('pwm ' .. pwmValue .. ' dir ' .. dirValue)
|
2021-11-11 16:16:04 -08:00
|
|
|
print('')
|
2021-11-08 18:29:09 -08:00
|
|
|
end
|
2021-11-08 14:31:17 -08:00
|
|
|
)";
|
2021-11-11 16:16:04 -08:00
|
|
|
strncpy(config->luaScript, script, efi::size(config->luaScript));
|
2021-11-08 14:31:17 -08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-01-09 14:40:08 -08:00
|
|
|
void detectBoardType() {
|
2022-04-19 12:26:32 -07:00
|
|
|
#if HW_HELLEN && !defined(HW_HELLEN_SKIP_BOARD_TYPE)
|
2022-01-09 14:40:08 -08:00
|
|
|
#if !EFI_UNIT_TEST
|
|
|
|
detectHellenBoardType();
|
|
|
|
#endif /* EFI_UNIT_TEST */
|
2021-09-29 08:52:54 -07:00
|
|
|
#endif //HW_HELLEN
|
2022-01-09 14:40:08 -08:00
|
|
|
// todo: add board ID detection?
|
|
|
|
}
|
2023-07-10 14:39:09 -07:00
|
|
|
|
|
|
|
void fuelBenchMode() {
|
2023-07-18 14:05:34 -07:00
|
|
|
engineConfiguration->cranking.rpm = 12000;
|
2023-08-17 21:09:04 -07:00
|
|
|
setFlatInjectorLag(0);
|
2023-08-17 21:25:49 -07:00
|
|
|
engineConfiguration->postCrankingFactor = 1;
|
|
|
|
setArrayValues(config->crankingFuelCoef, 1.0f);
|
|
|
|
setArrayValues(config->crankingCycleCoef, 1.0f);
|
2023-07-14 11:47:05 -07:00
|
|
|
setBodyControlUnit();
|
2023-07-10 14:39:09 -07:00
|
|
|
}
|
2023-08-23 18:57:08 -07:00
|
|
|
|
2023-08-23 20:47:32 -07:00
|
|
|
// PROTEUS_STIM_QC
|
|
|
|
// set engine_type 73
|
2023-08-23 18:57:08 -07:00
|
|
|
void proteusStimQc() {
|
|
|
|
engineConfiguration->trigger.type = trigger_type_e::TT_ONE_PLUS_ONE;
|
2023-08-29 16:44:54 -07:00
|
|
|
engineConfiguration->vvtMode[0] = VVT_SINGLE_TOOTH;
|
|
|
|
engineConfiguration->vvtMode[1] = VVT_SINGLE_TOOTH;
|
2023-08-23 18:57:08 -07:00
|
|
|
|
|
|
|
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;
|
2023-08-29 16:44:54 -07:00
|
|
|
|
2023-09-01 13:36:46 -07:00
|
|
|
setProteusEtbIO();
|
2023-09-01 14:20:42 -07:00
|
|
|
// EFI_ADC_13: "Analog Volt 4"
|
|
|
|
engineConfiguration->tps2_1AdcChannel = PROTEUS_IN_TPS2_1;
|
|
|
|
// EFI_ADC_0: "Analog Volt 5"
|
|
|
|
engineConfiguration->tps2_2AdcChannel = PROTEUS_IN_ANALOG_VOLT_5;
|
2023-09-01 13:36:46 -07:00
|
|
|
engineConfiguration->auxLinear1.hwChannel = PROTEUS_IN_ANALOG_TEMP_1;
|
|
|
|
engineConfiguration->auxLinear2.hwChannel = PROTEUS_IN_ANALOG_TEMP_4;
|
|
|
|
|
2023-08-30 21:28:52 -07:00
|
|
|
// engineConfiguration->fan2Pin = Gpio::PROTEUS_LS_9;
|
|
|
|
// engineConfiguration->malfunctionIndicatorPin = Gpio::PROTEUS_LS_13;
|
|
|
|
// engineConfiguration->tachOutputPin = Gpio::PROTEUS_LS_14;
|
|
|
|
//
|
|
|
|
// engineConfiguration->vvtPins[0] = Gpio::PROTEUS_LS_15;
|
|
|
|
// engineConfiguration->vvtPins[1] = Gpio::PROTEUS_LS_16;
|
2023-08-23 18:57:08 -07:00
|
|
|
}
|