summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2009-12-26 10:35:24 -0800
committerDavid Brownell <dbrownell@users.sourceforge.net>2009-12-26 10:35:24 -0800
commite7f81c11c9da8bbe46ca953f41809811b0f47639 (patch)
tree549aee7230b9dc664ebae12501f5ff95f41d412e /doc
parentdf58812b528c9b7857d8bde8f3eea4ad46ed034f (diff)
downloadopenocd+libswd-e7f81c11c9da8bbe46ca953f41809811b0f47639.tar.gz
openocd+libswd-e7f81c11c9da8bbe46ca953f41809811b0f47639.tar.bz2
openocd+libswd-e7f81c11c9da8bbe46ca953f41809811b0f47639.tar.xz
openocd+libswd-e7f81c11c9da8bbe46ca953f41809811b0f47639.zip
User's Guide: update GDB info
Advise leaving background polling enabled; fix broken URL; add simple program startup example.
Diffstat (limited to 'doc')
-rw-r--r--doc/openocd.texi37
1 files changed, 35 insertions, 2 deletions
diff --git a/doc/openocd.texi b/doc/openocd.texi
index 4244a1e8..013a31a8 100644
--- a/doc/openocd.texi
+++ b/doc/openocd.texi
@@ -1805,6 +1805,7 @@ allows background polling to be enabled and disabled.
You could use this from the TCL command shell, or
from GDB using @command{monitor poll} command.
+Leave background polling enabled while you're using GDB.
@example
> poll
background polling: on
@@ -6572,8 +6573,8 @@ if that's the tool chain used to compile your code.
@cindex Connecting to GDB
Use GDB 6.7 or newer with OpenOCD if you run into trouble. For
instance GDB 6.3 has a known bug that produces bogus memory access
-errors, which has since been fixed: look up 1836 in
-@url{http://sourceware.org/cgi-bin/gnatsweb.pl?database=gdb}
+errors, which has since been fixed; see
+@url{http://osdir.com/ml/gdb.bugs.discuss/2004-12/msg00018.html}
OpenOCD can communicate with GDB in two ways:
@@ -6597,6 +6598,38 @@ session.
To list the available OpenOCD commands type @command{monitor help} on the
GDB command line.
+@section Sample GDB session startup
+
+With the remote protocol, GDB sessions start a little differently
+than they do when you're debugging locally.
+Here's an examples showing how to start a debug session with a
+small ARM program.
+In this case the program was linked to be loaded into SRAM on a Cortex-M3.
+Most programs would be written into flash (address 0) and run from there.
+
+@example
+$ arm-none-eabi-gdb example.elf
+(gdb) target remote localhost:3333
+Remote debugging using localhost:3333
+...
+(gdb) monitor reset halt
+...
+(gdb) load
+Loading section .vectors, size 0x100 lma 0x20000000
+Loading section .text, size 0x5a0 lma 0x20000100
+Loading section .data, size 0x18 lma 0x200006a0
+Start address 0x2000061c, load size 1720
+Transfer rate: 22 KB/sec, 573 bytes/write.
+(gdb) continue
+Continuing.
+...
+@end example
+
+You could then interrupt the GDB session to make the program break,
+type @command{where} to show the stack, @command{list} to show the
+code around the program counter, @command{step} through code,
+set breakpoints or watchpoints, and so on.
+
@section Configuring GDB for OpenOCD
OpenOCD supports the gdb @option{qSupported} packet, this enables information