18 lines
362 B
Plaintext
18 lines
362 B
Plaintext
|
#!/bin/sh
|
||
|
prg=$(basename "$0")
|
||
|
port="$1"
|
||
|
if [ -z "$port" -o "$port" = "-h" ]
|
||
|
then
|
||
|
echo "usage: $0 <port>" >&2
|
||
|
echo "Connect to <port> and dump the content of the SRAM using D2 to stdout" >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
set -e
|
||
|
tmp=$(mktemp)
|
||
|
trap "rm -f \"$tmp\"" EXIT
|
||
|
|
||
|
echo D2 > "$tmp"
|
||
|
printcore -v "$port" "$tmp" 2>&1 | \
|
||
|
sed -ne '/^RECV: D2 /,/RECV: ok$/s/^RECV: //p'
|