_pack

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

_pack

706 Views
randyseedle
Contributor III

Other compilers use _pack to control memory layout in struct directives. Does NXP do anything like this or not? If yes can you provide an example.

Labels (1)
0 Kudos
1 Reply

627 Views
mjbcswitzerland
Specialist V

Hi

GCC uses __attribute__((__packed__)) to control packing in structs.

If you add a define

#define _pack      __attribute__((__packed__))

it will presumably make your code compatible with the other compiler that you have been using.

Regards

Mark

0 Kudos