From owner-svn-src-all@FreeBSD.ORG Fri Feb 3 05:23:52 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9488106566B; Fri, 3 Feb 2012 05:23:52 +0000 (UTC) (envelope-from uzimac@da3m0n8t3r.com) Received: from z.umatar.com (z.umatar.com [66.135.39.87]) by mx1.freebsd.org (Postfix) with ESMTP id 4F06B8FC0A; Fri, 3 Feb 2012 05:23:52 +0000 (UTC) Received: from z.umatar.com (localhost [127.0.0.1]) by z.umatar.com (8.14.5/8.14.3) with ESMTP id q135C8jG040204; Thu, 2 Feb 2012 21:12:08 -0800 (PST) (envelope-from uzimac@da3m0n8t3r.com) Received: (from uzimac@localhost) by z.umatar.com (8.14.5/8.14.3/Submit) id q135C8j9040203; Thu, 2 Feb 2012 21:12:08 -0800 (PST) (envelope-from uzimac@da3m0n8t3r.com) X-Authentication-Warning: z.umatar.com: uzimac set sender to uzimac@da3m0n8t3r.com using -f From: "Waitman Gobble" To: Adrian Chadd Message-Id: <1328245928.39926@da3m0n8t3r.com> X-Originating-IP: 75.36.155.21 X-Mailer: Usermin 1.500 In-Reply-To: <201202022104.q12L4OJ8054130@svn.freebsd.org> Date: Thu, 02 Feb 2012 21:12:08 -0800 (PST) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="bound1328245928" Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r230923 - head/tools/tools/ath/athradar X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 05:23:53 -0000 This is a multi-part message in MIME format. --bound1328245928 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Adrian Chadd wrote .. > Author: adrian > Date: Thu Feb 2 21:04:24 2012 > New Revision: 230923 > URL: http://svn.freebsd.org/changeset/base/230923 > > Log: > Add some missing radar config parameters to athradar. > > Modified: > head/tools/tools/ath/athradar/athradar.c > > Modified: head/tools/tools/ath/athradar/athradar.c > ============================================================================== > --- head/tools/tools/ath/athradar/athradar.c Thu Feb 2 19:03:29 2012 (r230922) > +++ head/tools/tools/ath/athradar/athradar.c Thu Feb 2 21:04:24 2012 (r230923) > @@ -207,6 +207,12 @@ radar_set_param(struct radarhandler *rad > radarset(radar, DFS_PARAM_RELSTEP, v); > } else if (strcmp(param, "maxlen") == 0) { > radarset(radar, DFS_PARAM_MAXLEN, v); > + } else if (strcmp(param, "usefir128") == 0) { > + radarset(radar, DFS_PARAM_USEFIR128, v); > + } else if (strcmp(param, "blockradar") == 0) { > + radarset(radar, DFS_PARAM_BLOCKRADAR, v); > + } else if (strcmp(param, "enmaxrssi") == 0) { > + radarset(radar, DFS_PARAM_MAXRSSI_EN, v); > } else if (strcmp(param, "extchannel") == 0) { > radarset(radar, DFS_PARAM_EN_EXTCH, v); > } else { > _______________________________________________ > svn-src-head@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-src-head > To unsubscribe, send any mail to "svn-src-head-unsubscribe@freebsd.org" I make/installed in /usr/src/tools/tools/ath/athradar and it appears to work, however I'm curious about what I can do with this. I don't seem to find anything about "radar parameter diagnostic" in a search engine, but maybe I'm looking in the wrong place. Simple command line example? Only asking `cause it sounds potentially cool :) thanks! -- Waitman Gobble San Jose California USA --bound1328245928--