diff options
author | John Klug <john.klug@multitech.com> | 2020-11-11 16:17:52 -0600 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2020-11-11 16:17:52 -0600 |
commit | 4bb6f26b05450777d14aa96e10783066c2503dc2 (patch) | |
tree | 3ed6c4bb86736d28926fd37a3c2b4eb81de44c82 /recipes-kernel/rs9113/files/rf/wf2 | |
download | meta-multitech-atmel-fc2577905bfab8d05f91c835e2bf821861e1d8b0.tar.gz meta-multitech-atmel-fc2577905bfab8d05f91c835e2bf821861e1d8b0.tar.bz2 meta-multitech-atmel-fc2577905bfab8d05f91c835e2bf821861e1d8b0.zip |
Diffstat (limited to 'recipes-kernel/rs9113/files/rf/wf2')
-rwxr-xr-x | recipes-kernel/rs9113/files/rf/wf2 | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/recipes-kernel/rs9113/files/rf/wf2 b/recipes-kernel/rs9113/files/rf/wf2 new file mode 100755 index 0000000..b56a68f --- /dev/null +++ b/recipes-kernel/rs9113/files/rf/wf2 @@ -0,0 +1,41 @@ +#!/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' +echo '2nd parameter values: 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54,' +echo ' mcs0, mcs1, mcs2, mcs3, mcs4, mcs5, mcs6,' +echo ' and mcs7' +echo '3rd parameter values:' +echo '0 is 20MHz, 2 is upper 20 of 40, 4 is lower 20 of 40, 6 is 40MHz, 8 is 20KHz for 11J' +echo '4th and 5th parameters: antenna gain values in db of 2.4GHZ and 5GHZ respectively' +gain2=0 +gain5=0 +if [[ -n $4 ]] ; then + gain2=$4 +fi +if [[ -n $5 ]] ; then + gain5=$5 +fi +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" +set -x +echo chan $chan +/opt/rs9113/onebox_util rpine0 ant_sel 2 +/opt/rs9113/onebox_util rpine0 set_ext_ant_gain $gain2 $gain5 |