This commit is contained in:
rusefi 2017-08-06 21:12:05 -04:00
parent 190b28fc26
commit 52f39e59d1
3 changed files with 11 additions and 1 deletions

View File

@ -286,6 +286,11 @@ void setFordEscortGt(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
boardConfiguration->isSdCardEnabled = true;
// engineConfiguration->useFSIO16ForTimingAdjustment = true;
engineConfiguration->fsioAdc[0] = EFI_ADC_12; // PA3
config->fsioFormulas[15] = ANALOG_CONDITION;
// end of Ford Escort GT config
}

View File

@ -1,6 +1,6 @@
// this https://en.wikipedia.org/wiki/Reverse_Polish_notation is generated automatically
// from controllers/system_fsio.txt
// on 2017-08-03_08_05_52
// on 2017-08-06_20_09_57
//
//
// in this file we define system FSIO expressions
@ -68,3 +68,6 @@
// Human-readable: fsio_table (3, rpm, map) / 100
#define BOOST_CONTROLLER "3 rpm map fsio_table 100 /"
// Human-readable: if(fsio_input (0) > 20, 0, 10)
#define ANALOG_CONDITION "0 fsio_input 20 > 0 10 if"

View File

@ -47,3 +47,5 @@ RPM_BELOW_USER_SETTING_1=rpm < fsio_setting(1)
STARTER_BLOCK=rpm < cranking_rpm
BOOST_CONTROLLER=fsio_table (3, rpm, map) / 100
ANALOG_CONDITION=if(fsio_input (0) > 20, 0, 10)