From owner-freebsd-current@FreeBSD.ORG Mon Aug 29 17:03:06 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 5BFA216A41F for ; Mon, 29 Aug 2005 17:03:06 +0000 (GMT) (envelope-from sam@errno.com) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9447343D5E for ; Mon, 29 Aug 2005 17:03:03 +0000 (GMT) (envelope-from sam@errno.com) Received: from [66.127.85.91] ([66.127.85.91]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.6) with ESMTP id j7TH31Bd070261 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 29 Aug 2005 10:03:03 -0700 (PDT) (envelope-from sam@errno.com) Message-ID: <43134161.70207@errno.com> Date: Mon, 29 Aug 2005 10:09:53 -0700 From: Sam Leffler User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050327) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Dorijan Jelincic References: <09950876.20050824112311@kset.org> In-Reply-To: <09950876.20050824112311@kset.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org Subject: Re: wireless part: 2.3 gh band X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2005 17:03:06 -0000 Dorijan Jelincic wrote: > 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... > > I don't see the use in this change; please explain why it's worth doing. In particular this can only be useful w/ some other changes and/or a new driver so please indicate what else you've got. Sam