STLinkV2 cannot use to program STM32F030F4P6 board with STM32WS
Hi All,
I have a new board that I am trying to learn how to program.
I have connected my STLink to the device and using the STLink utility I was able to see it. Not understanding much what I see there BUT I was happy that I can do that.
I have started a project using STM32CubeMX to the board and set up Serial, Clock and the LED pin as output.
the I invoked STM32WS with the project I have created and added the code for the blink
while (1)
{
HAL_GPIO_TogglePin(LED_GPIO_Port, LED_Pin);
HAL_Delay(150);
}When I try to RUN it I am getting the following Error:
Open On-Chip Debugger 0.10.0-dev-00011-g46c94c8 (2018-09-06-08:52)
Licensed under GNU GPL v2
For bug reports, read
http://openocd.org/doc/doxygen/bugs.html
srst_only separate srst_nogate srst_open_drain connect_assert_srst
Info : The selected transport took over low-level target control. The results might differ compared to plain JTAG/SWD
adapter speed: 950 kHz
adapter_nsrst_delay: 100
Info : clock speed 1800 kHz
Info : STLINK v2 JTAG v32 API v2 VID 0x0483 PID 0x3748
Info : Target voltage: 3.204180
Info : STM32F030F4Px.cpu: hardware has 4 breakpoints, 2 watchpoints
adapter speed: 950 kHz
Error: timed out while waiting for target halted
TARGET: STM32F030F4Px.cpu - Not halted
in procedure 'program'
in procedure 'reset' called at file "embedded:startup.tcl", line 490
in procedure 'ocd_bouncer'
** Unable to reset target **
shutdown command invokedIs there something wrong with the configuration? I am sure there is BUT I can NOT point it out.
What does it mean adapter speed 950MHz? can I change the STLink Speed from the STM32WS app?
I would be happy if you can assist me.
Please let me know how can I move to the next level of developing this board.
Thank You!
Arye