openwifi/user_space/set_rx_monitor_all.sh
Xianjun Jiao 8c9b1b478d Add script to enable all rx packet collecting for:
rx statistics.
For example, the received ACK normally will not be reported to the rx driver statistics. After this script, we collect all packet (including ACK, all control/management packet) for statistics
2022-03-28 12:19:33 +02:00

25 lines
356 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 -x
# set
if [[ -n $1 ]]; then
echo $1 > rx_monitor_all
else
echo 1 > rx_monitor_all
fi
# show
cat rx_monitor_all
set +x
cd $home_dir