add gateway type

This commit is contained in:
Ray Ozzie 2016-04-16 15:25:11 -07:00
parent b6fbc9b494
commit 7d2c4ae000

30
run.sh
View File

@ -169,22 +169,22 @@ echo ""
# Reset the board to a known state prior to launching the forwarder # Reset the board to a known state prior to launching the forwarder
if [[ $GW_TYPE == "imst-ic880a-spi" ]]; then if [[ $GW_TYPE == "imst-ic880a-spi" ]]; then
echo "Resetting IMST iC880A-SPI" echo "Resetting IMST iC880A-SPI"
gpio -1 mode 22 out gpio -1 mode 22 out
gpio -1 write 22 0 gpio -1 write 22 0
sleep 0.1 sleep 0.1
gpio -1 write 22 1 gpio -1 write 22 1
sleep 0.1 sleep 0.1
gpio -1 write 22 0 gpio -1 write 22 0
sleep 0.1 sleep 0.1
elif [[ $GW_TYPE == "linklabs-dev" ]]; then elif [[ $GW_TYPE == "linklabs-dev" ]]; then
echo "Resetting LinkLabs Raspberry Pi Development Board"" echo "Resetting LinkLabs Raspberry Pi Development Board"
gpio -1 mode 29 out gpio -1 mode 29 out
gpio -1 write 29 0 gpio -1 write 29 0
sleep 0.1 sleep 0.1
gpio -1 write 29 1 gpio -1 write 29 1
sleep 0.1 sleep 0.1
gpio -1 write 29 0 gpio -1 write 29 0
sleep 0.1 sleep 0.1
else else
echo "ERROR: unrecognized GW_TYPE=$GW_TYPE" echo "ERROR: unrecognized GW_TYPE=$GW_TYPE"