• udp_get_buf() memory allocation
    Greetings: Has anyone any information where function udp_get_buf() allocates memory from and, on the other side of the equation, how the memory is freed? We are using TCP and UDP functions stand...
  • array alignment
    Hi there, I am using Keil to work on my ADuCM360 project. Is there a way to force a byte array to be word aligned? such as #pragma pack (2) from Microsoft? Thanks for your help!
  • Byte Alignment
    hi there, I am using Keil µVision 4 with NXP LPC11U35. I want to load a structure that contains mix type of variables (chars, integers, longs) using a char pointer. How can I set byte alignment so...
  • 32Byte alignment
    I'm using CARM in uVision3. I have to use the variable which is aligned to 32 byte boundary. For example, ... int Var1, Var2; struct{ char Index[16]; char Bucket[16][32]; }Var_3, Var_4; ....
  • Alignment of arrays
    Hi guys, I'm currently working with a Cortex-M0 which is incapable of unaligned reads. I have a byte array which is storing a received packet in a certain protocol, the first lot of information...