Integer to double conversion

Hello

You can use memcpy, it's the safest way to do that

uint32_t d = 0x41CC28F6;
float f;
memcpy( &f, &d, sizeof(float) );