mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
11 lines
159 B
Bash
Executable File
11 lines
159 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "##"
|
|
echo "## Starting debug server"
|
|
echo "##"
|
|
|
|
openocd -f board/st_nucleo_f334r8.cfg \
|
|
-c "init" \
|
|
-c "targets" \
|
|
-c "reset halt"
|