• __Packed Keyword
    i am using keil3.34 gnu complier. below code is related real view complier typedef __packed union { WORD W; __packed struct { BYTE L; BYTE H; } WB; } WORD_BYTE; now how __packed keyword using...
  • __packed typecast
    Hello all, Previously i was using MDKARM 4.0 and now i've upgraded to the 4.7. I am writing the program for LPC17xx. In the previous version i was using unsigned long long data type for 64 bit data...
  • is any alternate for __packed?
    i am working on usb device driver.i have keil board 2300(lpc2368). & keil Uvision3.34 .now i am using gnu ARM THUMB toolchain for windows of cygnus version3.3.1. for windows. now i am using real view...
  • Question on packed Data (__packed)
    Hallo i need to store a big amount of data in RAM. If i use __packed, no gap's are inserted and the use of memory is optimized, but working with this data, the program hangs because the program attempts...
  • Is it possible to set the __packed by using pragma?
    Hello Now I'm using MDK 3.5. The origin code didn't use __packed keyword in the definition of structure. To not to change the code, I want to use the #pragma __packed in the beginning of the code. Is...