mirror of
https://github.com/open-sdr/openwifi.git
synced 2024-12-19 13:48:24 +00:00
28 lines
1.0 KiB
Bash
28 lines
1.0 KiB
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Author: Xianjun Jiao
|
||
|
# SPDX-FileCopyrightText: 2022 UGent
|
||
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
|
||
|
set -x
|
||
|
if test -f "/sys/bus/iio/devices/iio:device0/in_voltage_rf_bandwidth"; then
|
||
|
cd /sys/bus/iio/devices/iio:device0/
|
||
|
else if test -f "/sys/bus/iio/devices/iio:device1/in_voltage_rf_bandwidth"; then
|
||
|
cd /sys/bus/iio/devices/iio:device1/
|
||
|
else if test -f "/sys/bus/iio/devices/iio:device2/in_voltage_rf_bandwidth"; then
|
||
|
cd /sys/bus/iio/devices/iio:device2/
|
||
|
else if test -f "/sys/bus/iio/devices/iio:device3/in_voltage_rf_bandwidth"; then
|
||
|
cd /sys/bus/iio/devices/iio:device3/
|
||
|
else if test -f "/sys/bus/iio/devices/iio:device4/in_voltage_rf_bandwidth"; then
|
||
|
cd /sys/bus/iio/devices/iio:device4/
|
||
|
else
|
||
|
echo "Can not find in_voltage_rf_bandwidth!"
|
||
|
echo "Check log to make sure ad9361 driver is loaded!"
|
||
|
exit 1
|
||
|
fi
|
||
|
fi
|
||
|
fi
|
||
|
fi
|
||
|
fi
|
||
|
set +x
|