add "Initial Ignition Cut %" and "Final Ignition Cut % Before launch" fields to the "Launch Control" dialog #6566

This commit is contained in:
kifir 2024-05-29 21:09:14 +03:00 committed by rusefillc
parent 729ed2fdac
commit c3facb11f1
2 changed files with 5 additions and 1 deletions

View File

@ -819,7 +819,9 @@ pin_output_mode_e hip9011IntHoldPinMode;
uint8_t mc33_hvolt;Boost Voltage;"v", 1, 0, 40, 70, 0
uint8_t minimumBoostClosedLoopMap;Minimum MAP before closed loop boost is enabled. Use to prevent misbehavior upon entering boost.;"kPa", 1, 0, 0, 255, 0
uint16_t unusedacFanPin
int8_t initialIgnitionCutPercent;;"%", 1, 0, 0, 100, 0
int8_t finalIgnitionCutPercentBeforeLaunch;;"%", 1, 0, 0, 100, 0
gppwm_channel_e boostOpenLoopYAxis

View File

@ -4790,6 +4790,8 @@ dialog = tcuControls, "Transmission Settings"
field = "Smooth Retard End RPM (from launch)", smoothRetardEndRpm, {launchSmoothRetard == 1}
field = "Hard Cut Mode"
field = "Ignition Cut", launchSparkCutEnable, {launchControlEnabled == 1}
field = "Initial Ignition Cut %", initialIgnitionCutPercent, {launchSparkCutEnable == 1}
field = "Final Ignition Cut % Before launch", finalIgnitionCutPercentBeforeLaunch, {launchSparkCutEnable == 1}
field = "Fuel Cut", launchFuelCutEnable, {launchControlEnabled == 1}