This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Difference between debug in RAM and in FLASH

Hi,

Does anyone knows what is the difference between debugging in RAM or debugging in FLASH of KEIL IDE? Also in select target either in debug/release.

Thanks.

Parents
  • No wear and tear on flash if you debug in RAM. And slightly quicker download.

    But less RAM for variables.

    And remember to remap your interrupt vectors into RAM, and set PC to the correct position before starting.

    Keil have examples where you switch target to either build a flash version or a RAM version of their examples.

Reply
  • No wear and tear on flash if you debug in RAM. And slightly quicker download.

    But less RAM for variables.

    And remember to remap your interrupt vectors into RAM, and set PC to the correct position before starting.

    Keil have examples where you switch target to either build a flash version or a RAM version of their examples.

Children