openwifi/user_space/set_restrict_freq.sh
Xianjun Jiao a918498713 Add script to restrict openwifi only use a fixed frequency:
to avoid extra tuning/scanning operation/procedure bringing ad9361 calibration and Linux channenl setting activities
2022-03-28 12:16:41 +02:00

21 lines
317 B
Bash
Executable File

#!/bin/bash
home_dir=$(pwd)
if test -d "/sys/devices/platform/fpga-axi@0/fpga-axi@0:sdr"; then
cd /sys/devices/platform/fpga-axi@0/fpga-axi@0:sdr
else
cd /sys/devices/soc0/fpga-axi\@0/fpga-axi\@0\:sdr
fi
# set
if [[ -n $1 ]]; then
echo $1 > restrict_freq_mhz
fi
# show
cat restrict_freq_mhz
cd $home_dir