mirror of
https://github.com/open-sdr/openwifi.git
synced 2024-12-19 05:38:09 +00:00
22 lines
316 B
Bash
Executable File
22 lines
316 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 "4$1" > csma_cfg0
|
|
fi
|
|
|
|
# show
|
|
cat csma_cfg0
|
|
set +x
|
|
|
|
cd $home_dir
|