Files
osmo-mgw/rrlp-ephemeris/get-test-data.sh
Sylvain Munaut a9923753ea rrlp-ephemeris: Add script to get test data from UBX receiver
Simple script illustrating how data.ubx (the test sample) is
generated.

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
2010-01-07 10:22:24 +01:00

18 lines
347 B
Bash
Executable File

#!/bin/sh
DEV=$1
OUTF=$2
# Change mode
echo -en "\$PUBX,41,1,0001,0001,9600,0*14\r\n" > ${DEV}
# Wait a little
sleep 2
# Start dump
echo -en "\xb5\x62\x01\x02\x00\x00\x03\x0a" | \
socat -t5 ${DEV},b9600,raw,clocal=1,echo=0 - > ${OUTF}
echo -en "\xb5\x62\x0b\x10\x00\x00\x1b\x5c" | \
socat -t10 ${DEV},b9600,raw,clocal=1,echo=0 - >> ${OUTF}