Advertisement
masa-

OpenOCD config for STM32VLDISCOVERY w/ Versaloon fw

Feb 25th, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. #
  2. # OpenOCD configuration file for in-circuit debugging the stm32vldiscovery
  3. # loaded with the versaloon firmware.
  4. # To start debugging issue those commands:
  5. # arm-none-eabi-gdb main.elf
  6. # target extended-remote :3333
  7. # monitor reset halt
  8. #
  9. # Daemon configuration
  10. #telnet_port 4444
  11. #gdb_port 3333
  12.  
  13. # Interface (using versaloon)
  14. interface vsllink
  15. transport select swd
  16. #swd_mode 2
  17. #swd_delay 2
  18.  
  19. # This is a board with an STM32F100RBT6
  20. # Use 2 kB instead of the default 16 kB
  21. set WORKAREASIZE 0x800
  22. source [find target/stm32.cfg]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement