mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-20 09:54:43 +02:00
madwifi: add antenna gpio support for nanostation loco2
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18055 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
8dee2fd6c4
commit
97abaa960a
@ -90,11 +90,20 @@ enable_atheros() {
|
|||||||
config_get_bool softled "$device" softled 1
|
config_get_bool softled "$device" softled 1
|
||||||
|
|
||||||
devname="$(cat /proc/sys/dev/$device/dev_name)"
|
devname="$(cat /proc/sys/dev/$device/dev_name)"
|
||||||
antgpio=
|
local antgpio=
|
||||||
|
local invert=
|
||||||
case "$devname" in
|
case "$devname" in
|
||||||
NanoStation2) antgpio=7;;
|
NanoStation2) antgpio=7; invert=1;;
|
||||||
NanoStation5) antgpio=1;;
|
NanoStation5) antgpio=1; invert=1;;
|
||||||
|
"NanoStation Loco2") antgpio=2;;
|
||||||
esac
|
esac
|
||||||
|
if [ -n "$invert" ]; then
|
||||||
|
_set="clear"
|
||||||
|
_clear="set"
|
||||||
|
else
|
||||||
|
_set="set"
|
||||||
|
_clear="clear"
|
||||||
|
fi
|
||||||
if [ -n "$antgpio" ]; then
|
if [ -n "$antgpio" ]; then
|
||||||
softled=0
|
softled=0
|
||||||
config_get antenna "$device" antenna
|
config_get antenna "$device" antenna
|
||||||
@ -106,14 +115,13 @@ enable_atheros() {
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
[ -x "$(which gpioctl 2>/dev/null)" ] || antenna=
|
[ -x "$(which gpioctl 2>/dev/null)" ] || antenna=
|
||||||
|
gpioctl "dirout" "$antgpio" >/dev/null 2>&1
|
||||||
case "$antenna" in
|
case "$antenna" in
|
||||||
horizontal|vertical|auto)
|
horizontal|vertical|auto)
|
||||||
gpioctl "dirout" "$antgpio" >/dev/null 2>&1
|
gpioctl "$_clear" "$antgpio" >/dev/null 2>&1
|
||||||
gpioctl "set" "$antgpio" >/dev/null 2>&1
|
|
||||||
;;
|
;;
|
||||||
external)
|
external)
|
||||||
gpioctl "dirout" "$antgpio" >/dev/null 2>&1
|
gpioctl "$_set" "$antgpio" >/dev/null 2>&1
|
||||||
gpioctl "clear" "$antgpio" >/dev/null 2>&1
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user