Skip to content
Snippets Groups Projects
Commit d6194d73 authored by oharboe's avatar oharboe
Browse files

fix syntax error.

git-svn-id: svn://svn.berlios.de/openocd/trunk@764 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent 7044908c
Branches
No related tags found
No related merge requests found
...@@ -1366,9 +1366,9 @@ target_script 0 gdb_program_config config.script ...@@ -1366,9 +1366,9 @@ target_script 0 gdb_program_config config.script
To verify any flash programming the gdb command @option{compare-sections} To verify any flash programming the gdb command @option{compare-sections}
can be used. can be used.
at node TCL and OpenOCD @node TCL and OpenOCD
at chapter TCL and OpenOCD @chapter TCL and OpenOCD
at cindex TCL and OpenOCD @cindex TCL and OpenOCD
OpenOCD embeds a TCL interpreter (see JIM) for command parsing and scripting OpenOCD embeds a TCL interpreter (see JIM) for command parsing and scripting
support. support.
...@@ -1378,7 +1378,7 @@ The command and file interfaces are fairly straightforward, while the network ...@@ -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 port is geared toward intergration with external clients. A small example
of an external TCL script that can connect to openocd is shown below. of an external TCL script that can connect to openocd is shown below.
at verbatim @verbatim
# Simple tcl client to connect to openocd # Simple tcl client to connect to openocd
puts "Use empty line to exit" puts "Use empty line to exit"
set fo [socket 127.0.0.1 5555] set fo [socket 127.0.0.1 5555]
...@@ -1394,7 +1394,7 @@ while {[gets stdin line] >= 0} { ...@@ -1394,7 +1394,7 @@ while {[gets stdin line] >= 0} {
flush stdout flush stdout
} }
close $fo close $fo
at end verbatim @end verbatim
This script can easily be modified to front various GUIs or be a sub This script can easily be modified to front various GUIs or be a sub
component of a larger framework for control and interaction. component of a larger framework for control and interaction.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment