I have been playing around with the telemetry recently and was looking into setup changes to help with overheating in the Super V8. I noticed something odd in the tyre temp data for the Front Left and it seemed to be jumping up 3-5C for a few ms before coming back down. I then took another capture of the M1 Procar and noticed the same thing, except it was the Front Right tyre: zoomed in a bit you can see it's just for one sample period, which in this instance is 1/20th of a second: Is this normal and should I be filtering the output?
For reference, the variables I am using are from the shared memory as follows: Code: float mTyreTemp[TYRE_MAX]; // [ UNITS = Celsius ] [ UNSET = 0.0f ] // Tyres float mTyreTempLeft[TYRE_MAX]; // [ UNITS = Celsius ] [ UNSET = 0.0f ] float mTyreTempCenter[TYRE_MAX]; // [ UNITS = Celsius ] [ UNSET = 0.0f ] float mTyreTempRight[TYRE_MAX]; // [ UNITS = Celsius ] [ UNSET = 0.0f ]