Skip to content
Snippets Groups Projects
Select Git revision
  • cb0f4ea61cc9a148684ca97aac85c6bd003ed7f7
  • master default protected
2 results

.gdbinit

Blame
    • Tmplt's avatar
      3e806037
      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
      History
      feat(gdbserver): rewrite to match S32 SDK workflow
      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).
    .gdbinit 279 B
    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