I've observed storing lat/long values in IEEE4 truncates them beyond the precision of my sensor. I'm using a CR3000 which does not appear to have DOUBLE/IEEE8.
Before I break the value across two variables (degrees and decimal minutes components), does anyone have a novel solution?
Multiply by 10^7 and store as LONG?
Multiplying wouldn't increas the resolution.
You can save the numbers as strings. You can't do any math operations on strings, and they take up more space. However, strings won't truncate the precision.
Thanks, good suggestions. Think I'll just use two variables (FP2 & IEEE4).