Hi Stackoverflow,
I have a function from an external source that returns an array of 2 uint16_t elements (which I cast to int).
I have already been able to cast these to one "big" int ((i1 << 16) + i2
)
Now I need to be able to cast this to float, keeping the point value as is in memory.
Can anyone suggest a way or point me in the right direction?
Thanks in advance!