xref: /openwifi/user_space/set_restrict_freq.sh (revision 6fdc02fb326ac7beccc948dddf343004bd0a7105)
1#!/bin/bash
2
3home_dir=$(pwd)
4
5if test -d "/sys/devices/platform/fpga-axi@0/fpga-axi@0:sdr"; then
6  cd /sys/devices/platform/fpga-axi@0/fpga-axi@0:sdr
7else
8  cd /sys/devices/soc0/fpga-axi\@0/fpga-axi\@0\:sdr
9fi
10
11# set
12if [[ -n $1 ]]; then
13  echo $1 > restrict_freq_mhz
14fi
15
16# show
17cat restrict_freq_mhz
18
19cd $home_dir
20
21