You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
331 B

  1. # Defines basic Tcl procs for OpenOCD server modules
  2. # Handle GDB 'R' packet. Can be overridden by configuration script,
  3. # but it's not something one would expect target scripts to do
  4. # normally
  5. proc ocd_gdb_restart {target_id} {
  6. # Fix!!! we're resetting all targets here! Really we should reset only
  7. # one target
  8. reset halt
  9. }