]> git.sur5r.net Git - openocd/blob - src/server/startup.tcl
Fix a bunch of typos.
[openocd] / src / server / startup.tcl
1 # Defines basic Tcl procs for OpenOCD server modules
2
3 # Handle GDB 'R' packet. Can be overridden by configuration script,
4 # but it's not something one would expect target scripts to do
5 # normally
6 proc ocd_gdb_restart {target_id} {
7         # Fix!!! we're resetting all targets here! Really we should reset only
8         # one target
9         reset halt
10 }