mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
a944d29edc
switched flashing and debug scripts to use OpenOCD
10 lines
177 B
Bash
Executable File
10 lines
177 B
Bash
Executable File
#!/bin/sh
|
|
|
|
openocd -f "board/stm32f0discovery.cfg" \
|
|
-c 'tcl_port 0' \
|
|
-c 'gdb_port 0' \
|
|
-c 'telnet_port 0' \
|
|
-c "init" \
|
|
-c "reset run" \
|
|
-c "shutdown"
|