I'm communicating serially between a host pc and an embedded processor. On the embedded side, I need to parse character strings for floating point and integer data. What I am currently doing is something along these lines:

inline float32* fp_unpack(float32* dest, volatile char* str) {
    Uint32 temp = (Uint32)str[3]<<24;
    temp |= (Uint32)str[2]<<16;
    temp |= (Uint32)str[1]<<8;
    temp |= (Uint32)str[0];
    temp = (float32)temp;
    *dest = (float32)temp;

    return dest;
}

Where str has four characters, each representing a byte of the float. The bytes in string are ordered little endian.

As an example, I'm trying to extract the number 100.0 from str. I've verified the contents of string are:

s[0]: 0x00, s[1]: 0x00, s[2]: 0x20, s[3]: 0x41,

which is the 32 bit floating point representation of 100.0. Furthermore, I've verified that the function successfully sets temp to 0x41200000. However, dest ends up being 0x4e824000. I know the problem arises from the line: *dest = (float32)temp, which I hoped would simply copy the bits from temp to dest, with a typecast to make the compiler happy.

However, I've realized that this won't be the case, since the operation: float x = (float)4/3 actually converts 4 to 4.0, ie changing the bits.

How do I coerce the bits in temp into dest?

Thanks in advance

edit: Note that 0x4120000 as an integer is 1092616192, which, as a float, is 0x4e82400

link|improve this question

57% accept rate
feedback

4 Answers

up vote 5 down vote accepted

You need to cast the pointers. Casting the values simply converts the int to float. Try:

*dest = *((float32*)&temp);
link|improve this answer
Also I'm very suspicious of the line temp = (float32)temp; The best you could hope for would be no effect, but I think in fact it turn the value you've so carefully constructed into the int "100". – Ernest Friedman-Hill Jun 8 '11 at 15:27
That worked, thank you for the speedy answer! – Trey Jun 8 '11 at 15:29
@Trey Then don't forget to accept (and up-vote) his answer. – Christian Rau Jun 8 '11 at 16:03
2  
This invokes undefined behavior and will result in incorrect code generation on modern compilers! – R.. Jun 8 '11 at 16:49
The behavior is certainly undefined. Interpreting the bits of an int as a float can't be defined portably, so the language must treat it as undefined. I'm not sure what you mean by incorrect code generation. Assuming that I know how the bits need to be laid out on my architecture, what will go wrong? (OTOH, the union answer below seems cleaner.) – andrewdski Jun 8 '11 at 22:12
show 2 more comments
feedback

The portable way that does not invoke undefined behavior due to aliasing rules violations:

float f;
uint32_t i;
memcpy(&f, &i, sizeof f);
link|improve this answer
feedback

Here is one more solution:

union test {
     float f;
     unsigned int i;
} x;

float flt = 100.0;
unsigned int uint;

x.f = flt;
uint = x.i;

Now unit has the bit pattern as it was in f.

link|improve this answer
feedback

Isn't Hex (IEEE754 ) representation of float 100.0 -->0x42c80000

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.