首页 > 其他分享 >stm32cubeIDE STLINK连接SWD接口调试,启动GDB server失败的处理

stm32cubeIDE STLINK连接SWD接口调试,启动GDB server失败的处理

时间:2022-11-06 21:24:36浏览次数:36  
标签:SWD server GDB stm32cubeIDE STLINK 调试

stm32cubeIDE STLINK连接SWD接口调试,启动GDB server失败的处理

报警提示

Failed to bind to port 61234, error code -1: No error Failure starting GDB server: TCP port 61234 not available.

image-20221012003837650

处理

  1. 打开任务管理器;

image-20221007231607158

  1. 结束STLINK GDB Server进程;

image-20221012003820052

  1. 再连接Stlink调试就OK了;

标签:SWD,server,GDB,stm32cubeIDE,STLINK,调试
From: https://www.cnblogs.com/davidshaw/p/16864107.html

相关文章

  • stm32cubeIDE STLINK连接SWD接口调试,启动GDB server失败的处理
    stm32cubeIDESTLINK连接SWD接口调试,启动GDBserver失败的处理报警提示Failedtobindtoport61234,errorcode-1:NoerrorFailurestartingGDBserver:TCPpor......
  • gdb常用调试命令
    作者:朱金灿gdbdemo//直接启动调试demo程序//带参数启动调试connectServer,其中192.168.10.53为命令行参数gdb--argsconnectServer192.168.10.53//启动调试后直接......
  • GDB Remote Serial Protocol —— RSP协议解析
    简介这篇文章翻译看看也是不错的    https://tatsuo.medium.com/implement-gdb-remote-debug-protocol-stub-from-scratch-3-e87a697ca48c    GDB......
  • C语言: GDB调试技术(一)
    启动GDB的方法有以下几种:1、gdb<program>program也就是你的执行文件,一般在当然目录下。’例如我写了一个简单的helloword程序#include<stdio.h>intmain(){inta=1;......
  • C语言:---gdb多线程调试
    1)恢复程序运行和单步调试当程序被停住了,你可以用continue命令恢复程序的运行直到程序结束,或下一个断点到来。也可以使用step或next命令单步跟踪程序。continue[ignore-coun......
  • C语言: ---gdb查看内存和寄存器内容
    gdb没有CodeWarrior强大,但是也提供了查看寄存器的命令:(gdb)inforegisterr1r1            0xbffffb40   3221224256(gdb)inforegistersr0     ......
  • GDB全过程详细讲解
    摘自:https://blog.csdn.net/guo_lei_lamant/article/details/83787730 4.堆栈查看调用堆栈(callstack)无疑是调试过程中非常重要的事情。(gdb)where#查看调用堆栈......
  • gdb 查看函数调用堆栈(frame概念)
    摘自:https://www.cnblogs.com/xiaoshiwang/p/12893748.html1,使用bt(backtrace)命令查看当前堆栈(gdb)bt#0muduo::Poller::poll(this=0x62e010,timeoutMs=10000,......
  • GDB 备忘
    objdump-dtarget反编译targetgdbtarget开始调试targetr(run)运行b(break)funName在函数funName处设置断点b0x000001在地址0x000001处设置断点i(info)b显示......
  • gdb
    断点设置断点break+offsetbreak-offset(在当前行号的前面或后面的offset行停住。)breakfilename:linenum在源文件filename的linenum行处停住。breakfilename:func......