#!/bin/bash echo 'Optional 1st parameter is wifi channel' echo '2nd parameter is rate 1,18,54 or other valid rate' echo '3rd parameter is width, 0 for 20MHz, and 24 for 40MHz' chan=8 if [[ -n $1 ]] ; then chan=$1 fi rate=54 if [[ -n $2 ]] ; then rate=$2 fi flag=0 if [[ -n $3 ]] ; then flag=$3 fi export DRIVER_MODE=2 export COEX_MODE=1 /etc/init.d/rs9113 stop >/dev/null 2>&1 cd /opt/rs9113 bash wlan_bt_insert.sh sleep 2 echo "Using channel WiFi $chan BT $btchan" echo chan $chan echo "Start modulated signal for 10 seconds" echo "Use antenna port 2" set -x sleep 2 /opt/rs9113/onebox_util rpine0 ant_sel 2 /opt/rs9113/transmit 127 $rate 1536 1 $chan 0 $flag 0 0 0 255 set +x sleep 10 echo Bring up unmodulated signal set -x /opt/rs9113/transmit 0 /opt/rs9113/onebox_util rpine0 ant_sel 3 /opt/rs9113/onebox_util rpine0 cw_mode $chan 0 5