From owner-freebsd-current@FreeBSD.ORG Wed Aug 24 09:23:15 2005 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD1A916A41F for ; Wed, 24 Aug 2005 09:23:15 +0000 (GMT) (envelope-from dorijan@kset.org) Received: from marvin.kset.org (marvin.kset.org [161.53.74.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BDCE43D48 for ; Wed, 24 Aug 2005 09:23:14 +0000 (GMT) (envelope-from dorijan@kset.org) Received: from insane (cmung2571.cmu.carnet.hr [192.168.1.214]) by marvin.kset.org (8.12.3/8.12.3/Debian-7.1) with ESMTP id j7O9NDwo015593 for ; Wed, 24 Aug 2005 11:23:13 +0200 Received: from placebo.znet ([10.168.4.3]) by insane (602LAN SUITE 2004) id 32cceeeb for freebsd-current@freebsd.org; Wed, 24 Aug 2005 11:23:13 +0200 Date: Wed, 24 Aug 2005 11:23:11 +0200 From: Dorijan Jelincic X-Mailer: The Bat! (v3.5.30) Professional Organization: FER X-Priority: 3 (Normal) Message-ID: <09950876.20050824112311@kset.org> To: freebsd-current@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Wed, 24 Aug 2005 11:37:25 +0000 Subject: wireless part: 2.3 gh band X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dorijan Jelincic List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Aug 2005 09:23:15 -0000 Hello freebsd-current, I am using 2.3 gh band since it is legal radioamater band, and it would be great if you could implement it in ieee80211.c ieee80211_mhz2ieee(u_int freq, u_int flags) { if (flags & IEEE80211_CHAN_2GHZ) { /* 2GHz band */ if (freq == 2484) return 14; if (freq<=2402) return (255 - (2402-freq)/5); /* 2.3GHz band */ if (freq < 2484) return (freq - 2407) / 5; else return 15 + ((freq - 2512) / 20);} ..... ieee80211_ieee2mhz(u_int chan, u_int flags) { if (flags & IEEE80211_CHAN_2GHZ) { /* 2GHz band */ if (chan == 14) return 2484; if (chan>236) return 2402 - (255-chan)*5; /* 2.3GHz band */ if (chan < 14) return 2407 + chan*5; else return 2512 + ((chan-15)*20);} This way channel list is compatibile even with Mikrotik and StarOS... -- "Well it's just that lately I've noticed everyone seems to trust me. It's quite unnerving." - Garak, DS9 : Empok Nor Dorijan Jelincic, 9a3ajd