不久前,CLion添加了对远程 GDB 调试的支持,我正在尝试使用 Seggers 的 J-Link GDB 服务器对其进行设置。
我的设置:
- 运行 Ubuntu 16.04 的 VM VirtualBox
- J-Link 驱动程序:V6.10
- 目标芯片:nRF51(ARM Cortex M0)
- 克莱恩 2016.2.2
我通常在 Windows 中工作,但由于 CLion 不支持 Windows 中的远程 GDB,我试图让它在 VirtualBox 中运行 Ubuntu。我在 CLion 中配置了调试器,如图所示,上面链接中的博客提供了一些帮助。我使用的论据基于 J-Link 文档(文档:UM08001)和一些猜测。 GDB 服务器设置
我的问题是,在运行调试器时,进程刚刚停止并且 CLion 的控制台输出:
“无法连接到目标。请检查电源、连接和设置。”
我试图从终端运行 JLinkGDBServer ,然后我得到了这样的结果:
/usr/bin/JLinkGDBServer -device nrf51422_xxAC -if swd -speed 1000 -endian little
SEGGER J-Link GDB Server V6.10 Command Line Version
JLinkARM.dll V6.10 (DLL compiled Sep 14 2016 16:46:16)
-----GDB Server start settings-----
GDBInit file: none
GDB Server Listening port: 2331
SWO raw output listening port: 2332
Terminal I/O port: 2333
Accept remote connection: yes
Generate logfile: off
Verify download: off
Init regs on start: off
Silent mode: off
Single run mode: off
Target connection timeout: 0 ms
------J-Link related settings------
J-Link Host interface: USB
J-Link script: none
J-Link settings file: none
------Target related settings------
Target device: nrf51422_xxAC
Target interface: SWD
Target interface speed: 1000kHz
Target endian: little
Connecting to J-Link...
J-Link is connected.
Firmware: J-Link OB-SAM3U128-V2-NordicSemi compiled Jul 5 2016 08:42:09
Hardware: V1.00
S/N: 681666518
Checking target voltage...
Target voltage: 3.30 V
Listening on TCP/IP port 2331
Connecting to target...Connected to target
Waiting for GDB connection...
有谁知道我做错了什么?