• Tmplt's avatar
    feat(gdbserver): rewrite to match S32 SDK workflow · 3e806037
    Tmplt authored
    Exception being that ./gdbserver.sh is not in single-run mode; it runs
    continously waiting for gdb clients. ./.gdbinit has been rewritten by to
    mirror the debug output of board programming in the S32 SDK. The biggest
    changes is likely that breakpoints are now cleared, and semihosting
    is enabled (not that we need it, but we want to mirror SDK behavior).
    3e806037
.gdbinit 279 bytes
target remote :2331
monitor speed 1000
monitor clrbp
monitor reset
monitor halt
monitor regs
monitor speed auto
monitor flash breakpoints 1
monitor semihosting enable
monitor semihosting IOClient 1
load
monitor clrbp
monitor reset
monitor halt
monitor regs
break main
continue