From 22aab2f5435a49c6ea647b684ea3564e34e986f7 Mon Sep 17 00:00:00 2001 From: John Klug Date: Thu, 16 May 2019 16:27:59 -0500 Subject: Add in antenna gain adjustment for wf command --- recipes-kernel/rs9113/files/rf/wf | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) mode change 100755 => 100644 recipes-kernel/rs9113/files/rf/wf diff --git a/recipes-kernel/rs9113/files/rf/wf b/recipes-kernel/rs9113/files/rf/wf old mode 100755 new mode 100644 index f40454e..7c31f44 --- a/recipes-kernel/rs9113/files/rf/wf +++ b/recipes-kernel/rs9113/files/rf/wf @@ -1,4 +1,4 @@ -#!/bin/bash +!/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' @@ -7,6 +7,15 @@ 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 @@ -29,4 +38,6 @@ echo "Using channel WiFi $chan BT $btchan" set -x echo chan $chan /opt/rs9113/onebox_util rpine0 ant_sel 2 -/opt/rs9113/transmit 127 $rate 1536 1 $chan 0 $flag 0 0 0 255 +/opt/rs9113/onebox_util rpine0 set_ext_ant_gain $gain2 $gain5 +/opt/rs9113/transmit rpine0 18 $rate 1536 1 $chan 0 $flag 0 0 0 255 + -- cgit v1.2.3