123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #!/bin/bash
-
- # ----------------------------------------------------------------------------
- # Copyright (c) 2023 Thomas Buck (thomas@xythobuz.de)
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # See <http://www.gnu.org/licenses/>.
- # ----------------------------------------------------------------------------
-
- set -euo pipefail
-
- cd "$(dirname "$0")"
-
- echo Starting OpenOCD in background
- echo "\n\nstarting new openocd" >> openocd.log
- ./build_debug/openocd/src/openocd -s build_debug/openocd/tcl -f interface/cmsis-dap.cfg -f target/rp2040.cfg -c "adapter speed 5000" -c "cmsis_dap_vid_pid 0x2e8a 0x000c" >> openocd.log 2>&1 &
- OPENOCD_PID=$!
-
- # give OpenOCD some time to output stuff
- sleep 1
-
- echo -n Waiting for debugger to appear
- while ! netstat -tna | grep 'LISTEN\>' | grep -q ':3333\>'; do
- echo -n .
- sleep 1
- done
-
- echo Starting GDB
- arm-none-eabi-gdb \
- -ex "set history save" \
- -ex "show print pretty" \
- -ex "target extended-remote localhost:3333" \
- -ex "tui new-layout default src 1 status 1 cmd 2" \
- -ex "tui layout default" \
- -ex "tui enable" \
- $1
-
- echo Killing OpenOCD instance in background
- kill $OPENOCD_PID
|