README 416 B

12345678910111213141516171819
  1. This code is an example of using the openocd debug message system.
  2. Before the message output is seen in the debug window, the functionality
  3. will need enabling:
  4. From the gdb prompt:
  5. monitor target_request debugmsgs enable
  6. monitor trace point 1
  7. From the Telnet prompt:
  8. target_request debugmsgs enable
  9. trace point 1
  10. To see how many times the trace point was hit:
  11. (monitor) trace point 1
  12. Spen
  13. spen@spen-soft.co.uk