mirror of
https://github.com/open-sdr/openwifi.git
synced 2024-12-19 13:48:24 +00:00
21 lines
297 B
Bash
21 lines
297 B
Bash
|
#!/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 > dbg_ch0
|
||
|
fi
|
||
|
|
||
|
# show
|
||
|
cat dbg_ch0
|
||
|
|
||
|
cd $home_dir
|
||
|
|