struct a_struct
{
uint8_t Member1;
uint8_t Member2;
uint8_t Member3;
uint32_t Member4;
}
Example C structure definition
The first three members are 8 bits each, and will most likely appear in three
consecutive bytes of the same 32-bit word. The forth member is 32-bits, and
can be accessed most efficiently (dependent on the MCU, but in most cases)
if it is placed on a 32-bit (four byte) boundary.
Therefore, without the structure being packets, the compiler will most
likely add a 'padding' byte between Member3 and Member4 to
move the start address of Member4 up one byte and so onto a 32-bit boundary.
The structure will then appear in memory as follows:
struct a_struct
{
uint8_t Member1; At address 0 (first byte of first 32-bit word)
uint8_t Member2; At address 1 (second byte of first 32-bit word)
uint8_t Member3; At address 2 (third byte of first 32-bit word)
Padding byte At address 4 (forth byte of the first 32-bit word)
uint32_t Member4; Now at address 4, the first byte of the second 32-bit word
}
Example of how the C structure will appear in the MCU memory
However, the TCP/IP protocol headers do not have padding bytes, so the compiler
must be instructed not to add them additional bytes into structures that
map onto the IP protocol headers that a written to or read from Ethernet
frames. Structures that do not contain padding bytes are said to be 'packed'. The
syntax required to ensure structures are packed depends on the embedded C
compiler. The FreeRTOS+TCP implementation cannot use any
C compiler specific syntax in the common (not MCU port specific) files,
and instead allows users to define their own packing directives in two
very simple header files that are then included from the C files.
Structures that require packing appear in the FreeRTOS+TCP code as follows:
#include "pack_struct_start.h"
struct a_struct
{
uint8_t Member1;
uint8_t Member2;
uint8_t Member3;
uint32_t Member4;
}
#include "pack_struct_end.h"
A structure wrapped in pack_struct_start.h and pack_struct_end header file inclusions
A version of pack_struct_start.h and pack_struct_end.h that contains compiler
specific syntax can then be provided for each compiler.
For example, the directory FreeRTOS-Plus/FreeRTOS-Plus-UDP/portable/Compiler/GCC contains definitions suitable for use with the GCC compiler. pack_struct_start.h is empty because GCC does not require any special syntax at the start of the structure. pack_struct_end.h contains the following single line of code:
__attribute__( (packed) );
So, after pre-processing the C source code appears to the compiler
as shown below, which is valid GCC syntax:
struct a_struct { uint8_t Member1; uint8_t Member2; uint8_t Member3; uint32_t Member4; } __attribute__( (packed) ); How GCC sees a packed structure after pack_struct_start.h and pack_struct_end.h have been included
FreeRTOS-Plus/FreeRTOS-Plus-TCP/portable/Compiler/GCC is already included in the FreeRTOS+TCP download and can be used as a refeference when porting to other embedded C compilers.
pack_struct_end.h must, as a minimum, contain at least a semicolon ( ; ) to mark the end of the structure definition. It is sometimes valid for pack_struct_start.h to be empty, but it is never valid for pack_struct_end.h to be completely empty.