• Packed structure is not packed
    I would like to have a packed structure (because I'm gonna store those data in flash, and need it as small as possible). I'm using Keil 5.22 on nRF51822. typedef struct { uint16_t packedValue;...
  • Packed structure is not packed
    I would like to have a packed structure (because I'm gonna store those data in flash, and need it as small as possible). I'm using Keil 5.22 on nRF51822. typedef struct { uint16_t packedValue;...
  • pragma pack structure in vxworks
    Hi, I am facing a problem in vxWorks. The problem is: I hava a pragma packed structure like below: struct C { float aaa; float bbb; } __attribute__((__packed__)) var3; struct B {...
  • pragma pack structure in vxworks
    Hi, I am facing a problem in vxWorks. The problem is: I hava a pragma packed structure like below: struct C { float aaa; float bbb; } __attribute__((__packed__)) var3; struct B {...
  • Problem with structures containing structures
    Hello, I have a problem with the following structure declaration: typedef struct { HDEntriesTYPE HDWindowStartSTRUCT; } actualPlayerStatusTYPE; typedef struct { unsigned long StartClusterUL;...