This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
A bit like
gdb$ watch *0xfeedface
For context: I'm trying to debug a memory corruption bug in my TI Hercules MCU (RM46)
CCS Version: 12.3.0.00005
Thanks,
Gabriel
Hello Gabriel,
Yes, this is typically known as a "watchpoint" and supported by most devices in CCS:
https://software-dl.ti.com/ccs/esd/documents/users_guide/ccs_debug-main.html#watchpoints
Thanks
ki
Hi,
The documentation you linked tells me about a feature that is exactly what I need.
It doesn't appear to be available in CCS.
It should be available with CCS on your device if you are using an XDS based debug probe:
Note that if you are using SEGGER J-LINK, then you cannot set a hardware breakpoints or watchpoints from the CCS IDE. It must be done from the J-Link control panel instead: https://www.segger.com/products/debug-probes/j-link/technology/control-panel/
Thanks
ki
Thanks for your reply.
Note that if you are using SEGGER J-LINK, then you cannot set a hardware breakpoints or watchpoints from the CCS IDE.
This was exactly the problem. Thanks.