From ee9ee82211684ee3de6dc9b3425411fdb28fbdb3 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Wed, 5 Aug 2015 16:21:34 +1200 Subject: Update test scripts in tools --- tools/hex.sh | 35 ++++++++++++++++++++++++++++------- 1 file changed, 28 insertions(+), 7 deletions(-) (limited to 'tools/hex.sh') diff --git a/tools/hex.sh b/tools/hex.sh index 2a7b55901..cd880e13e 100755 --- a/tools/hex.sh +++ b/tools/hex.sh @@ -1,14 +1,35 @@ #!/bin/sh # -# This test data assumes device "352964051908664" exists. +# Script to send convert HEX string into binary and send it to specified local port # -# INSERT INTO device ( name, uniqueid ) -# VALUES ( 'Test Device for hex.sh', 352964051908664 ); +# Example usage: # -# Note: Not all shells support "echo -e" (e.g., dash - default on Ubuntu). -# This will cause an unknown device error for "-e". +# hex.sh 5039 3e52505631393535352b343533383431382d303733393531383530303032303231323b49443d393939393b2a37423c0d0a # -echo 3e52505631393535352b343533383431382d303733393531383530303032303231323b49443d393939393b2a37423c0d0a | perl -ne 's/([0-9a-f]{2})/print chr hex $1/gie' | nc -v -w 10 localhost 5039 -#echo 3e52505631393535352b343533383431382d303733393531383530303032303231323b49443d393939393b2a37423c0d0a | perl -ne 's/([0-9a-f]{2})/print chr hex $1/gie' > /dev/udp/localhost/5057 +if [[ $# -lt 2 ]] +then + echo "USAGE: $0 " + exit 1 +fi + +send_hex_udp () { + echo $2 | xxd -r -p | nc -u localhost $1 +} + +send_hex_tcp () { + echo $2 | xxd -r -p | nc localhost $1 +} + +send_text_udp () { + echo -n -e $2 | nc -u localhost $1 +} + +send_text_tcp () { + echo -n -e $2 | nc localhost $1 +} + +send_hex_tcp $1 $2 + +exit $? -- cgit v1.2.3