From 094a2a0778abe77672a2d0114eb5f453517b1723 Mon Sep 17 00:00:00 2001 From: John Klug Date: Thu, 16 May 2019 16:40:58 -0500 Subject: Allow for antenna gain in wf command --- recipes-kernel/rs9113/files/rf/wf | 13 ++++++++++++- recipes-kernel/rs9113/rs9113rf.inc | 2 +- recipes-kernel/rs9113/rs9113rf_1.1.bb | 1 - recipes-kernel/rs9113/rs9113rf_1.2.bb | 1 + 4 files changed, 14 insertions(+), 3 deletions(-) delete mode 100644 recipes-kernel/rs9113/rs9113rf_1.1.bb create mode 100644 recipes-kernel/rs9113/rs9113rf_1.2.bb diff --git a/recipes-kernel/rs9113/files/rf/wf b/recipes-kernel/rs9113/files/rf/wf index f16bec0..832ec51 100755 --- a/recipes-kernel/rs9113/files/rf/wf +++ b/recipes-kernel/rs9113/files/rf/wf @@ -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 rpine0 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 + diff --git a/recipes-kernel/rs9113/rs9113rf.inc b/recipes-kernel/rs9113/rs9113rf.inc index 9fcea2b..ce8b7fc 100644 --- a/recipes-kernel/rs9113/rs9113rf.inc +++ b/recipes-kernel/rs9113/rs9113rf.inc @@ -2,7 +2,7 @@ DESCRIPTION = "Immunity testing for rs9113" SECTION = "base" PRIORITY = "optional" LICENSE = "GPLv2+" -PR = "r4" +PR = "r1" inherit allarch LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" SRC_URI = " \ diff --git a/recipes-kernel/rs9113/rs9113rf_1.1.bb b/recipes-kernel/rs9113/rs9113rf_1.1.bb deleted file mode 100644 index 43ec216..0000000 --- a/recipes-kernel/rs9113/rs9113rf_1.1.bb +++ /dev/null @@ -1 +0,0 @@ -require rs9113rf.inc diff --git a/recipes-kernel/rs9113/rs9113rf_1.2.bb b/recipes-kernel/rs9113/rs9113rf_1.2.bb new file mode 100644 index 0000000..43ec216 --- /dev/null +++ b/recipes-kernel/rs9113/rs9113rf_1.2.bb @@ -0,0 +1 @@ +require rs9113rf.inc -- cgit v1.2.3