mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
11 lines
151 B
Bash
Executable File
11 lines
151 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "##"
|
|
echo "## Resetting $1"
|
|
echo "##"
|
|
|
|
openocd -f board/st_nucleo_f334r8.cfg \
|
|
-c "init" \
|
|
-c "reset run"\
|
|
-c "shutdown"
|