1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-06 11:11:20 +02:00

fix noise/signal level display (fixes #20)

SVN-Revision: 2421
This commit is contained in:
Felix Fietkau 2005-11-11 16:04:02 +00:00
parent 2cba595a92
commit d912196f67

@ -225,7 +225,7 @@ struct iw_statistics *wlcompat_get_wireless_stats(struct net_device *dev)
{ {
wl_bss_info_t *bss_info = (wl_bss_info_t *) buf; wl_bss_info_t *bss_info = (wl_bss_info_t *) buf;
get_pktcnt_t pkt; get_pktcnt_t pkt;
int rssi, noise; int rssi, noise, ap;
memset(&wstats, 0, sizeof(wstats)); memset(&wstats, 0, sizeof(wstats));
memset(&pkt, 0, sizeof(pkt)); memset(&pkt, 0, sizeof(pkt));
@ -234,12 +234,18 @@ struct iw_statistics *wlcompat_get_wireless_stats(struct net_device *dev)
wl_ioctl(dev, WLC_GET_BSS_INFO, bss_info, WLC_IOCTL_MAXLEN); wl_ioctl(dev, WLC_GET_BSS_INFO, bss_info, WLC_IOCTL_MAXLEN);
wl_ioctl(dev, WLC_GET_PKTCNTS, &pkt, sizeof(pkt)); wl_ioctl(dev, WLC_GET_PKTCNTS, &pkt, sizeof(pkt));
// somehow the structure doesn't fit here wl_ioctl(dev, WLC_GET_AP, &ap, sizeof(ap));
noise = buf[0x50]; if (!ap) {
rssi = buf[0x52]; // somehow the structure doesn't fit here
rssi = buf[82];
noise = buf[84];
} else {
noise = 0;
rssi = 0;
}
wstats.qual.level = rssi; wstats.qual.level = rssi;
wstats.qual.noise = -100 + noise; wstats.qual.noise = noise;
wstats.discard.misc = pkt.rx_bad_pkt; wstats.discard.misc = pkt.rx_bad_pkt;
wstats.discard.retries = pkt.tx_bad_pkt; wstats.discard.retries = pkt.tx_bad_pkt;