I have got number in this mode: Value mode = 16-bit fixed point (signed)
And how I can convert this number to floating point? Any idea?
Can I use this function, when this number is signed?
float toFloat(int16_t val) {
return ((float)val)/256.0f;
}