Onboard SD Card Datalogging Doesn't Record TPS #3943

This commit is contained in:
rusefillc 2022-02-18 22:44:39 -05:00
parent 46fcc89f21
commit 286730f2a0
2 changed files with 2 additions and 1 deletions

View File

@ -33,6 +33,7 @@ All notable user-facing or behavior-altering changes will be documented in this
- SD card logging with SDIO hardware #3873
- rusEFI console stability improvement #3912
- console updater does not work if folder name contains spaces #3927
- SD card logs PPS as TPS #3943
## Removed
- Miata NB1 trigger was merged with Miata NB2 trigger

View File

@ -27,7 +27,7 @@ static constexpr LogField fields[] = {
{engine->outputChannels.intake, GAUGE_NAME_IAT, "C", 1},
{engine->outputChannels.auxTemp1, GAUGE_NAME_AUX_TEMP1, "C", 1},
{engine->outputChannels.auxTemp2, GAUGE_NAME_AUX_TEMP2, "C", 1},
{engine->outputChannels.throttlePedalPosition, GAUGE_NAME_TPS, "%", 2},
{engine->outputChannels.TPSValue, GAUGE_NAME_TPS, "%", 2},
{engine->outputChannels.TPS2Value, GAUGE_NAME_TPS2, "%", 2},
{engine->outputChannels.throttlePedalPosition, GAUGE_NAME_THROTTLE_PEDAL, "%", 2},
{engine->outputChannels.MAPValue, GAUGE_NAME_MAP, "kPa", 1},