• Structure fields & RAM variables on the same address
    I have a structure with various fields. And there are few global variables. The structure fields and the global variables (basically status-flags) denote same information. It doesnt make sense to have...
  • Setting MAC address
    I am currently porting a project from Stellaris LM3S6611 to a NXP LPC1766. On the Stellaris chip the MAC address is normally set in the user registers that are OTP or One Time Programmable. For production...
  • Assembler keyword for address setting
    Hi, what keyword or other thing do I need to make assembled code being placed on a fixed predeifined memory location? I searched the asssembler help but did not find anything like that. Thanks...
  • Set MAC address startup
    Hi, I'm trying to change the MAC address like this: volatile netStatus aaa; osThreadSetPriority (osThreadGetId(), osPriorityHigh); netInitialize (); aaa = netIF_SetOption (NET_IF_CLASS_ETH |...
  • Place static variable in RAM?
    Hi All If I declare a variable (or a data struct) static, the data is placed in the IRAM. I guess the static data is moved to the IRAM before the "main" in called and probally also before the SDRAM...