openwifi/user_space/set_lbt_th.sh
Xianjun Jiao 6faed2c4d0 Make set_lbt_th.sh output more human friendly:
While no argument is given (for checking)
2023-02-09 16:09:11 +01:00

19 lines
267 B
Bash
Executable File

#!/bin/bash
if [[ -n $1 ]]; then
lbt_th=$1
else
lbt_th=987654321 # no input
fi
set -x
#set
if [ $lbt_th -ne 987654321 ]; then
./sdrctl dev sdr0 set reg drv_xpu 0 $lbt_th
fi
# show
# ./sdrctl dev sdr0 get reg xpu 8
./sdrctl dev sdr0 get reg drv_xpu 0
set +x