summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-07 06:36:12 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-07 06:36:12 +0000
commitd6194d7356d15eaff0a8267779cbc5561a324bf8 (patch)
treee37ac463bd08ad876fbbb0f41d016eabe093fe7f
parent7044908cf0184f5d82b3812f1c56a7098ea12850 (diff)
downloadopenocd+libswd-d6194d7356d15eaff0a8267779cbc5561a324bf8.tar.gz
openocd+libswd-d6194d7356d15eaff0a8267779cbc5561a324bf8.tar.bz2
openocd+libswd-d6194d7356d15eaff0a8267779cbc5561a324bf8.tar.xz
openocd+libswd-d6194d7356d15eaff0a8267779cbc5561a324bf8.zip
fix syntax error.
git-svn-id: svn://svn.berlios.de/openocd/trunk@764 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-rw-r--r--doc/openocd.texi10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/openocd.texi b/doc/openocd.texi
index 95f7f3d4..160efa65 100644
--- a/doc/openocd.texi
+++ b/doc/openocd.texi
@@ -1366,9 +1366,9 @@ target_script 0 gdb_program_config config.script
To verify any flash programming the gdb command @option{compare-sections}
can be used.
- at node TCL and OpenOCD
- at chapter TCL and OpenOCD
- at cindex TCL and OpenOCD
+@node TCL and OpenOCD
+@chapter TCL and OpenOCD
+@cindex TCL and OpenOCD
OpenOCD embeds a TCL interpreter (see JIM) for command parsing and scripting
support.
@@ -1378,7 +1378,7 @@ The command and file interfaces are fairly straightforward, while the network
port is geared toward intergration with external clients. A small example
of an external TCL script that can connect to openocd is shown below.
- at verbatim
+@verbatim
# Simple tcl client to connect to openocd
puts "Use empty line to exit"
set fo [socket 127.0.0.1 5555]
@@ -1394,7 +1394,7 @@ while {[gets stdin line] >= 0} {
flush stdout
}
close $fo
- at end verbatim
+@end verbatim
This script can easily be modified to front various GUIs or be a sub
component of a larger framework for control and interaction.