mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
11 lines
165 B
Bash
Executable File
11 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "##"
|
|
echo "## Resetting $1"
|
|
echo "##"
|
|
|
|
openocd -f "${RIOTBOARD}/${BOARD}/dist/openocd.cfg" \
|
|
-c "init" \
|
|
-c "reset run"\
|
|
-c "shutdown"
|