Add script for testing RP network connectivity

master
Harry Ho 2021-05-13 10:27:51 +08:00
parent a5ba828b47
commit e46781a776
1 changed files with 13 additions and 0 deletions

13
rp_ping_test Normal file
View File

@ -0,0 +1,13 @@
#!/bin/sh
# RedPitaya hostname
export RP_HOST=rp-f0612e
# Check if RedPitaya becomes connectable from network by pinging
while true
do
ping $RP_HOST -c 1 >/dev/null 2>/dev/null && break
done
# Print time when RedPitaya ready on network
TIMESTAMP_PRETTY=$(date '+%Y-%m-%d %H:%M:%S')
echo "RP becomes connectable at $TIMESTAMP_PRETTY."