ABS signal from telemetry?

Hi everyone I'm new to rF2 plugins development
I'm interested in the ABS (anti lock brake system) signal.
is there a way to retrieve this information from plugin system?
thx
 
heres how i have done it

mTelemetry.tc = info.mUnfilteredThrottle - info.mFilteredThrottle;
mTelemetry.abs = info.mUnfilteredBrake - info.mFilteredBrake;


if its above 0, then ABS (or TC) is active

My plugin is ready and I receive telemetry data OK.
but the filtered and unfiltered values are always the same
 
Back
Top