0

There is about how to set breakpoint on memory read/write:

Can I set a breakpoint on 'memory access' in GDB?

How to perform that in Eclipse debugging window? I need to do that while debugging C/C++ project for Cortex-M microcontrollers. Thank you.

Community
  • 1
  • 1
user3583807
  • 766
  • 1
  • 8
  • 26

1 Answers1

0

You can set a read breakpoint in gdb using the rwatch command. See help rwatch for details. Note that it is often very slow.

I don't know how to do this from Eclipse.

Tom Tromey
  • 21,507
  • 2
  • 45
  • 63