scaling of microRusEFI ADC gauges fix #4356

This commit is contained in:
rusefillc 2022-07-18 08:26:17 -04:00
parent 15f2725282
commit 90e98bacbf
1 changed files with 1 additions and 1 deletions

View File

@ -572,7 +572,7 @@ static void updateRawSensors() {
for (int i = 0;i<AUX_ANALOG_INPUT_COUNT;i++) {
adc_channel_e ch = engineConfiguration->auxAnalogInputs[i];
if (ch != EFI_ADC_NONE) {
engine->outputChannels.rawAnalogInput[i] = getVoltage("raw aux", ch);
engine->outputChannels.rawAnalogInput[i] = getVoltageDivided("raw aux", ch);
}
}