• Initializing Memory
    How do we initialize the XDATA memory with dummy data (e.g. 0xDEADBEEF)? By default all the memory is initialized to 0x00 during debugging (in the IDE). When you burn your firmware on the controller...
  • Initializing Memory
    How do we initialize the XDATA memory with dummy data (e.g. 0xDEADBEEF)? By default all the memory is initialized to 0x00 during debugging (in the IDE). When you burn your firmware on the controller...
  • Microcontroller memory initialization
    Hi, I am using a cortex M0 microcontroller, after reset the flash memory addresses are initilazed to 0xFFFFFFFF, Is it possible to initialize an address to ZERO once at programming stage ? That means...
  • Microcontroller memory initialization
    Hi, I am using a cortex M0 microcontroller, after reset the flash memory addresses are initilazed to 0xFFFFFFFF, Is it possible to initialize an address to ZERO once at programming stage ? That means...
  • L4: Data Space Memory Overlap with register set 1 interrupt routine
    I have an interrupt service routine written in assembly that I am using register set 1 to pass data back and forth to the main program. In my main program I have: BYTE AudioTemp0 _at_ 0x08; // R0...