This is an automated email from Gerrit.

Antonio Borneo ([email protected]) just uploaded a new patch set to 
Gerrit, which you can find at http://openocd.zylin.com/5687

-- gerrit

commit 40cd4a3d2dccd9959a87dca2ae3ff3632dfe6223
Author: Antonio Borneo <[email protected]>
Date:   Tue May 19 16:41:17 2020 +0200

    target: use one second timeout while halting target at gdb attach
    
    By default GDB timeouts after 2 seconds, even if this value can be
    modified with GDB command "set remotetimeout".
    On OpenOCD side, the default event for GDB attach is to halt the
    target and wait it to halt. But here the default timeout of the
    halt command is 5 seconds!
    If the target cannot be halted (e.g. it's kept in reset by another
    core or the debugger doesn't have enough privileges) then GDB will
    timeout while OpenOCD is still waiting and is unable to
    communicate with GDB.
    
    Decrease the halt timeout to 1 second in the default GDB attach
    event handler.
    
    Change-Id: I231c740816bb6a0d74b0bc679a368a6cbfb34824
    Signed-off-by: Antonio Borneo <[email protected]>

diff --git a/src/target/startup.tcl b/src/target/startup.tcl
index 976cd2a..164a0ba 100644
--- a/src/target/startup.tcl
+++ b/src/target/startup.tcl
@@ -205,7 +205,7 @@ proc init_target_events {} {
        foreach t $targets {
                set_default_target_event $t gdb-flash-erase-start "reset init"
                set_default_target_event $t gdb-flash-write-end "reset halt"
-               set_default_target_event $t gdb-attach "halt"
+               set_default_target_event $t gdb-attach "halt 1000"
        }
 }
 

-- 


_______________________________________________
OpenOCD-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to