FSIO
This commit is contained in:
parent
cb2b35b6f6
commit
f483fcfdb6
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue