aux serial config files (#1326)
This commit is contained in:
parent
fefaa54c92
commit
a243b36504
|
@ -799,7 +799,7 @@ custom maf_sensor_type_e 4 bits, S32, @OFFSET@, [0:7], @@maf_sensor_type_e_enum@
|
|||
bit enableLaunchRetard
|
||||
bit enableLaunchBoost
|
||||
bit launchDisableBySpeed
|
||||
bit unusedBit_251_7
|
||||
bit enableInnovateLC2
|
||||
bit unusedBit_251_8
|
||||
bit unusedBit_251_9
|
||||
bit unusedBit_251_10
|
||||
|
@ -1030,9 +1030,9 @@ int16_t tps2Max;Full throttle#2. tpsMax value as 10 bit ADC value. Not Voltage!\
|
|||
|
||||
int16_t iacByTpsTaper;+Extra IAC, in percent between 0 and 100, tapered between zero and idle deactivation TPS value;"percent", 1, 0, 0, 500, 0
|
||||
|
||||
brain_pin_e unusedErrorPin;
|
||||
brain_pin_e auxSerialTxPin;set_aux_tx_pin X;
|
||||
brain_pin_e warningLedPin;
|
||||
brain_pin_e unused1234234;
|
||||
brain_pin_e auxSerialRxPin;set_aux_rx_pin X;
|
||||
brain_pin_e LIS302DLCsPin;
|
||||
|
||||
|
||||
|
@ -1055,7 +1055,9 @@ int16_t tps2Max;Full throttle#2. tpsMax value as 10 bit ADC value. Not Voltage!\
|
|||
float slowAdcAlpha;+ExpAverage alpha coefficient;"coeff", 1, 0, 0, 200, 3
|
||||
debug_mode_e debugMode;+See http://rusefi.com/s/debugmode\n\nset debug_mode X
|
||||
|
||||
uint32_t[9] unused_former_warmup_target_afr;
|
||||
uint32_t auxSerialSpeed;;"BPs", 1, 0, 0,1000000, 0
|
||||
|
||||
uint32_t[8] unused_former_warmup_target_afr;
|
||||
|
||||
float boostCutPressure;kPa value at which we need to cut fuel and spark, 0 if not enabled;"kPa", 1, 0, 0, 500, 0
|
||||
|
||||
|
@ -1513,3 +1515,4 @@ end_struct
|
|||
#define ts_show_can_pins true
|
||||
#define ts_show_tunerstudio_port true
|
||||
#define ts_show_trigger_comparator false
|
||||
#define ts_show_auxserial_pins true
|
|
@ -1944,6 +1944,8 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
field = "servo#3", servoOutputPins3
|
||||
field = "servo#4", servoOutputPins4
|
||||
field = "servo#5", servoOutputPins5
|
||||
field = "AUX Serial TX", auxSerialTxPin
|
||||
field = "AUX Serial RX", auxSerialRxPin
|
||||
|
||||
|
||||
dialog = allPins1_1_and_2, "", xAxis
|
||||
|
@ -2077,9 +2079,10 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
field = "Heater pin", o2heaterPin
|
||||
|
||||
dialog = egoSettings, "", yAxis
|
||||
panel = egoSettings_IO, {enableAemXSeries == 0}
|
||||
panel = egoSettings_sensor, {afr_hwChannel != 16 && enableAemXSeries == 0}
|
||||
panel = egoSettings_IO
|
||||
panel = egoSettings_sensor, {afr_hwChannel != 16 && enableAemXSeries == 0 && !auxSerialRxPin && !auxSerialTxPin}
|
||||
field = "Enable AEM X-Series CANbus", enableAemXSeries, { canReadEnabled }
|
||||
field = "Enable Innovate LC-2 Serial", enableInnovateLC2, { auxSerialRxPin && auxSerialTxPin }
|
||||
|
||||
; Engine->EGT inputs
|
||||
dialog = egtInputs, "EGT inputs"
|
||||
|
@ -2404,6 +2407,11 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
field = "RX pin", canRxPin @@if_ts_show_can_pins
|
||||
field = "TX pin", canTxPin @@if_ts_show_can_pins
|
||||
|
||||
dialog = auxSerial, "AUX Serial"
|
||||
field = "RX pin", auxSerialRxPin @@if_ts_show_auxserial_pins
|
||||
field = "TX pin", auxSerialTxPin @@if_ts_show_auxserial_pins
|
||||
field = "Serial Baud Rate", auxSerialSpeed @@if_ts_show_auxserial_pins
|
||||
|
||||
dialog = sdCard, "SD Card Logger"
|
||||
field = "SdCard", isSdCardEnabled
|
||||
field = "showSdCardWarning", showSdCardWarning
|
||||
|
@ -2439,6 +2447,7 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
field = "ADC vRef voltage", adcVcc
|
||||
panel = tsPort @@if_ts_show_tunerstudio_port
|
||||
panel = canBus
|
||||
panel = auxSerial
|
||||
panel = sdCard @@if_ts_show_sd_card
|
||||
panel = gpsReceiver @@if_ts_show_gps
|
||||
panel = tle8888
|
||||
|
|
Loading…
Reference in New Issue