I\'m writing some software where each bit must be exact(it\'s for the CPU) so __packed is very important.
typedef union{ uint32_t raw; struct{ unsigned
For reference to anyone who might find this, try the packed attribute:
struct __attribute__((packed)){ }