flash: fix at91sam3/4 driver typos
[fw/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 }