1

我有 stm32 nucleo board wb55rg 并且正在尝试将一些示例闪存到其中,例如 blinky 和自定义示例,但是当我尝试在构建项目后将项目闪存到板中时,我遇到了同样的错误(在等待时超时目标暂停),我不知道如何处理它。我在互联网上搜索,我发现了一些关于强迫症的信息,但我不太明白。我没有使用 STMCubeIDE 仅 zephyr 的示例闪烁。任何人都可以帮助我吗?我正在使用 VM box 中的 linux OS 和 zephyr 中的一个简单的闪烁示例。

My steps are:

    west build -b nucleo_wb55rg samples/basic/blinky ( building project )
    west flash 

错误信息

-- west flash: rebuilding
[0/1] cd /home/nikos/Desktop/my_try/bu.../cmake/flash && /usr/bin/cmake -E echo

-- west flash: using runner openocd
-- runners.openocd: Flashing file: /home/nikos/Desktop/my_try/build/zephyr/zephyr.hex
Open On-Chip Debugger 0.10.0+dev-01508-gf79c90268-dirty (2021-03-26-16:13)
Licensed under GNU GPL v2
For bug reports, read
    http://openocd.org/doc/doxygen/bugs.html
Info : The selected transport took over low-level target control. The results might differ compared to plain JTAG/SWD
srst_only separate srst_nogate srst_open_drain connect_deassert_srst

Info : clock speed 500 kHz
Info : STLINK V2J37M26 (API v2) VID:PID 0483:374B
Info : Target voltage: 3.229148
Info : stm32wbx.cpu: hardware has 6 breakpoints, 4 watchpoints
Info : starting gdb server for stm32wbx.cpu on 3333
Info : Listening on port 3333 for gdb connections
    TargetName         Type       Endian TapName            State       
--  ------------------ ---------- ------ ------------------ ------------
 0* stm32wbx.cpu       hla_target little stm32wbx.cpu       running

Info : Unable to match requested speed 500 kHz, using 480 kHz
Info : Unable to match requested speed 500 kHz, using 480 kHz
Error: timed out while waiting for target halted
TARGET: stm32wbx.cpu - Not halted
FATAL ERROR: command exited with status 1: /home/nikos/zephyr-sdk-0.12.4/sysroots/x86_64-pokysdk-linux/usr/bin/openocd -s /home/nikos/zephyrproject/zephyr/boards/arm/nucleo_wb55rg/support -s /home/nikos/zephyr-sdk-0.12.4/sysroots/x86_64-pokysdk-linux/usr/share/openocd/scripts -f /home/nikos/zephyrproject/zephyr/boards/arm/nucleo_wb55rg/support/openocd.cfg -c init -c targets -c 'reset halt' -c 'flash write_image erase /home/nikos/Desktop/my_try/build/zephyr/zephyr.hex' -c 'reset halt' -c 'verify_image /home/nikos/Desktop/my_try/build/zephyr/zephyr.hex' -c 'reset run' -c shutdown
4

1 回答 1

0

我发现了这个问题的问题。这块板被使用了它的前任所有者已经改变了板上的一些切换销。所以我搜索了stm32wb55rg的默认管脚,当我设置默认管脚时,错误就解决了。非常感谢所有回复此帖子的人,以帮助我了解发生了什么。

于 2021-08-11T21:04:47.113 回答