RomRaider Donations are welcome! Support the site that supports you.
The EcuFlash def for this Rom has been updated to include
Speed Limiter tables.
Store the file in directory: \Program Files\OpenECU\EcuFlash\rommetadata\subaru\Legacy 3.0R of your EcuFlash installation.
Small changes were made to 32BITBASE with regards to the Speed Limiter functionality, it is not necessary to update your 32BITBASE unless you wish to adjust the Throttle Reduction Percentage used by the Throttle Speed Cut (you can still adjust the thresholds)
Changes made to 32BITBASE:
Added:
Code:
<scaling name="ThrottlePlateOpeningAngle(%)2" units="%" toexpr="(x-128)*0.78" frexpr="(x/0.78)+128" format="%.0f" min="-128" max="128" inc="1" storagetype="uint8" endian="little"/>
Replaced:
Code:
<table name="Speed Limiting (Throttle)" category="Miscellaneous - Limits" type="2D" level="4" scaling="VehicleSpeed(KMH)">
<description>The vehicle speed at which throttle is reduced.</description>
<table name="Throttle Reduction" type="Static Y Axis" elements="2">
<data>None Below</data>
<data>High Above</data>
</table>
</table>
With:
Code:
<table name="Speed Limiting (Throttle)" category="Miscellaneous - Limits" type="2D" level="4" scaling="VehicleSpeed(KMH)">
<description>The vehicle speed at which throttle is reduced.</description>
<table name="Throttle Reduction" type="Y Axis" elements="2" scaling="ThrottlePlateOpeningAngle(%)2">
<data>None Below</data>
<data>High Above</data>
</table>
</table>
As above these changes are
OPTIONALWorth noting that these changes can be applied to ANY of the DBW defs I've encountered so far as the Throttle Speed Limiter is actually a table, not distinct values.