mirror of
https://github.com/openmv/openmv.git
synced 2025-09-26 23:09:13 +08:00
8 lines
200 B
Bash
Executable File
8 lines
200 B
Bash
Executable File
#!/bin/sh
|
|
if [ $# -ne 1 ]; then
|
|
echo "usage `basename $0` device (STM32H743VI/STM32F765VI)"
|
|
exit 1
|
|
fi
|
|
|
|
~/JLink_Linux_V656d_x86_64/JLinkGDBServer -if swd -halt -strict -cpu cortex-m -device $1
|