aboutsummaryrefslogtreecommitdiff
path: root/tools/tools/ath
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2012-02-02 21:04:24 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2012-02-02 21:04:24 +0000
commit10677921cd6c88e521ad7456bd5e3bc1192b7a50 (patch)
tree71bc57c82742962a2caa03bd69745ee142e20e85 /tools/tools/ath
parent47bb96433cf8a4c3f71dc51c3a50fdc301d1127b (diff)
downloadsrc-10677921cd6c88e521ad7456bd5e3bc1192b7a50.tar.gz
src-10677921cd6c88e521ad7456bd5e3bc1192b7a50.zip
Add some missing radar config parameters to athradar.
Notes
Notes: svn path=/head/; revision=230923
Diffstat (limited to 'tools/tools/ath')
-rw-r--r--tools/tools/ath/athradar/athradar.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/tools/ath/athradar/athradar.c b/tools/tools/ath/athradar/athradar.c
index 472692d457f7..5f086085e1b7 100644
--- a/tools/tools/ath/athradar/athradar.c
+++ b/tools/tools/ath/athradar/athradar.c
@@ -207,6 +207,12 @@ radar_set_param(struct radarhandler *radar, const char *param, const char *val)
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 {