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

testing/*.tcl sample & test code

git-svn-id: svn://svn.berlios.de/openocd/trunk@798 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent 173a43ff
Branches
No related tags found
No related merge requests found
......@@ -1381,7 +1381,7 @@ of an external TCL script that can connect to openocd is shown below.
@verbatim
# Simple tcl client to connect to openocd
puts "Use empty line to exit"
set fo [socket 127.0.0.1 5555]
set fo [socket 127.0.0.1 6666]
puts -nonewline stdout "> "
flush stdout
while {[gets stdin line] >= 0} {
......
# Simple tcl client to connect to openocd
puts "Use empty line to exit"
set fo [socket 127.0.0.1 6666]
puts -nonewline stdout "> "
flush stdout
while {[gets stdin line] >= 0} {
if {$line eq {}} break
puts $fo $line
flush $fo
gets $fo line
puts $line
puts -nonewline stdout "> "
flush stdout
}
close $fo
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment