-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Description
When I run st-util 1.6.1, the board restarts rather than waiting for me to start arm-none-eabi-gdb, load the image, and continue
. And it often (although not always) also restarts right after I load the image, before I enter continue
. In st-util 1.6.0, the board wouldn't restart until after I started arm-none-eabi-gdb, loaded the image, and entered continue
.
- Programmer/board type: ST-LINK/V2
- Programmer firmware version: V2J29S7
- Operating system and version: macOS Catalina 10.15.5
- Stlink tools version: v1.6.1 (installed via Homebrew)
- Stlink commandline tool name: st-util
- Target chip (and board if applicable): STM32L496xx
Commandline-Output:
Running st-util 1.6.1 shows this output:
> st-util
st-util
2020-06-08T14:56:16 INFO common.c: L496x/L4A6x: 256 KiB SRAM, 1024 KiB flash in at least 2 KiB pages.
2020-06-08T14:56:16 INFO gdb-server.c: Listening at *:4242...
And then the board restarts. Starting arm-none-eabi-gdb and then loading the image often (but not always) also results in the board restarting after the image has been loaded, but before I enter continue
.
Expected/description:
st-util 1.6.0 showed this instead:
st-util 1.6.0
2020-06-08T14:57:16 INFO common.c: Loading device parameters....
2020-06-08T14:57:16 INFO common.c: Device connected is: L496x/L4A6x device, id 0x20006461
2020-06-08T14:57:16 INFO common.c: SRAM size: 0x40000 bytes (256 KiB), Flash: 0x100000 bytes (1024 KiB) in pages of 2048 bytes
2020-06-08T14:57:16 INFO gdb-server.c: Chip ID is 00000461, Core ID is xxxxxxxx.
2020-06-08T14:57:16 INFO gdb-server.c: Listening at *:4242...
And the board didn't restart until I started arm-none-eabi-gdb, loaded the image, and entered continue
.