Compare commits

..

No commits in common. "3781ecb6697ce86b43a3df7f80ea64c438ad9ea7" and "c3be39b4e525474e9a9fcbe5945cbbb3e2c1bd3f" have entirely different histories.

2 changed files with 0 additions and 25 deletions

View File

@ -1,7 +0,0 @@
target extended-remote :2331
monitor reset
load
monitor reset
kill
quit

View File

@ -1,18 +0,0 @@
#!/bin/bash
JLinkGDBServer -if SWD -device STM32F407VE &
sleep 2
# Check if GDB server is still running
gdbpid=`pidof JLinkGDBServer`
if [[ $gdbpid == "" ]]; then
echo ""
echo "GDB Server not running! Check target connection."
exit
fi
arm-none-eabi-gdb -x program-device.gdb reflow-controller.elf
sleep 2
kill $gdbpid