Default struct fields alignment
Hello,which is the default struct fields alignment policy of GCC, on STM32 MCU? I have the following structure: typedef struct{ uint32_t param1; float param2; uint16_t param3;} PARAM_T; I expected a size of 10 bytes, but it is 12 instead...