Hello TI support:
I am currently trying to pack data into 1 bit position of the data structure for serial communiction. In many compile using #pragma pack(1) to pack tight 1-byte positions. Why the TI compile doesn't support this.
What is the syntax for TI compile to support 1-byte packing (similar to #pragma pack(1) )?
------------- For example; Byte packing in Microsoft Visual Studio: ------------------
// pack data into 1 bit position
#pragma pack(push, 1)
....
....
....
// pack is into byte position NORMAL
//#pragma pack(pop)
----------- For example; RealView Compile --------------
#pragma push
#pragma pack(1)
#pragma pop