Add jlink GDB server bash script.

This commit is contained in:
iabdalkader 2019-12-26 18:40:20 +02:00
parent ffbb52a29a
commit 5fa9ff10c5

7
tools/jlinkgdbserver Executable file
View File

@ -0,0 +1,7 @@
#!/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