mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
aafc099a1c
This adds mspdebug as package, similar to EDBG, so that the programmer/debugger is build from source. This has the advantage that we can indeed provide patches of our own. The first patch fixes a bug with the CPU detection of `mspdebug` in combination with the Olimex MSP430-JTAG-TINY-V2. The second adds the `--expect-id <CPU_NAME>` argument. The RIOT integration is updated to directly make use of the `--expect-id` parameter. No more spending time debugging why firmware the firmware for the `olimex-msp430-h2618` doesn't run when flashed on the `olimex-msp430h1611` hardware :D
35 lines
757 B
Bash
Executable File
35 lines
757 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
MSPDEBUG="$1"
|
|
MSPDEBUG_PROGRAMMER="$2"
|
|
PROTOCOL="$3"
|
|
MSPDEBUG_TTY="$4"
|
|
DEBUG_ADAPTER_ID="$5"
|
|
DEBUG_TARGET_ID="$6"
|
|
GDBPORT="$7"
|
|
|
|
if [ -z "${MSPDEBUG_PROGRAMMER}" ]; then
|
|
echo "MSPDEBUG_PROGRAMMER unset, cannot use mspdebug"
|
|
fi
|
|
|
|
args=()
|
|
args+=("--expect-id" "$DEBUG_TARGET_ID")
|
|
if [ "JTAG" = "${PROTOCOL}" ]; then
|
|
args+=("-j")
|
|
else
|
|
if [ "Spy-Bi-Wire" != "${PROTOCOL}" ]; then
|
|
echo "Debugger protocol \"${PROTOCOL}\" not supported, use JTAG or Spy-Bi-Wire"
|
|
exit 1
|
|
fi
|
|
fi
|
|
args+=("${MSPDEBUG_PROGRAMMER}")
|
|
if [ -n "${DEBUG_ADAPTER_ID}" ]; then
|
|
args+=("s" "{$DEBUG_ADAPTER_ID}")
|
|
fi
|
|
if [ -n "${MSPDEBUG_TTY}" ]; then
|
|
args+=("-d" "${MSPDEBUG_TTY}")
|
|
fi
|
|
args+=("gdb ${GDBPORT}")
|
|
|
|
"${MSPDEBUG}" "${args[@]}"
|