mirror of https://github.com/rusefi/wideband.git
11 lines
156 B
C
11 lines
156 B
C
|
#pragma once
|
||
|
|
||
|
struct AnalogResult
|
||
|
{
|
||
|
float NernstVoltage;
|
||
|
float VirtualGroundVoltage;
|
||
|
float PumpCurrentVoltage;
|
||
|
};
|
||
|
|
||
|
AnalogResult AnalogSample();
|