OpenOCD Не удалось выполнить команду MI: -target-select remote localhost:3333
Я привык использовать Segger на работе, но я не хотел тратить такие деньги на домашнее использование, поэтому я впервые использую OpenOCD для отладки. У меня есть Olimex ARM-USB-TINY-H.
Моя ОС - Ubuntu. Я использую MCUXpresso (Eclipse) с плагином OpenOCD. У меня проблемы с подключением GDB к OpenOCD. Любые указатели будут очень полезны.
У меня есть параметры конфигурации, установленные на
-s /usr/local/share/openocd/scripts/ -f /usr/local/share/openocd/scripts/interface/ftdi/olimex-arm-usb-tiny-h.cfg -f /home/username/Documents/Code/kl27z-ARM_USB_TINY.cfg
Консольный вывод:
Open On-Chip Debugger 0.10.0
Licensed under GNU GPL v2
For bug reports, read
http://openocd.org/doc/doxygen/bugs.html
Info : FTDI SWD mode enabled
none separate
Info : add flash_bank kinetis kl27.flash
adapter speed: 1000 kHz
none separate
cortex_m reset_config sysresetreq
Started by GNU MCU Eclipse
Info : clock speed 1000 kHz
in procedure 'init'
in procedure 'ocd_bouncer'
Затмение выскакивает эта ошибка:
Error in final launch sequence
Failed to execute MI command:
-target-select remote localhost:3333
Error message from debugger back end:
localhost:3333: Connection timed out.
Failed to execute MI command:
-target-select remote localhost:3333
Error message from debugger back end:
localhost:3333: Connection timed out.
localhost:3333: Connection
Вот файл.cfg
# inteface: olimex arm usb tiny h
# transport: swd
# adapter/interface
#interface ftdi
#source [find interface/ftdi/olimex-arm-usb-tiny-h.cfg]
transport select swd
# increase working area to 16KB
# set WORKAREASIZE 0x4000
set CHIPNAME kl27
#reset_config srst_only srst_nogate connect_assert_srst
reset_config none separate
source [find target/klx.cfg]
ftdi_layout_signal SWD_EN -data 0
$CHIPNAME.cpu configure -event examine-end {
kinetis mdm check_security
}
#gdb_memory_map disable
$_TARGETNAME configure -event gdb-attach {
echo "Halting Target"
reset init
}
Обновление, запущенное с --debug 0, последняя часть консоли
Debug: 272 20 transport.c:239 handle_transport_init(): handle_transport_init
Debug: 273 20 ftdi.c:1223 ftdi_swd_switch_seq(): JTAG-to-SWD
Debug: 274 20 ftdi.c:1077 ftdi_swd_run_queue(): Executing 2 queued transactions
Debug: 275 20 ftdi.c:1109 ftdi_swd_run_queue(): JUNK DP read reg 0 = 00000000
Debug: 276 20 command.c:626 run_command(): Command failed with error code -4
User : 277 21 command.c:687 command_run_line(): in procedure 'init'
in procedure 'ocd_bouncer'
Debug: 278 21 command.c:626 run_command(): Command failed with error code -4
User : 279 21 command.c:687 command_run_line():
1 ответ
Я понял это, в основном это был драйвер ftdi, но также и немного конфигурации. Я изложил, что я сделал в своем блоге. https://mitchjonesengineering.us/?p=18