Resolved! 8bit in struct is allocated 32bit in memory
Hello,I am a newbie in struct.I have a struct declaration below.typedef struct __serial_data { uint8_t frameStart; uint32_t data; } serial_data; serial_data mydata[25];but frameStart is allocated 32bit in memory and this causes trouble when sendi...