Hi, I'm trying to debug and flash my STM32 with OpenOCD/GDB. I start openocd with the following command: openocd -f openocd.cfg -c init My Debug / Load configuration:
1 | target extended-remote localhost:3333 |
2 | monitor soft_reset_halt |
3 | set mem inaccessible-by-default off |
4 | load |
5 | compare-sections |
6 | monitor reset init |
Load works only one attempt out of 5. The error message is just Load failed... Does anyone have a clue what the problem could be? Thanks a lot!