Bug 32880

Summary: Update aironet driver to correct signal strengt units, and add ``quality'' information.
Product: Base System Reporter: Douglas S. J. De Couto <decouto>
Component: kernAssignee: Doug Ambrisko <ambrisko>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: 4.4-RELEASE   
Hardware: Any   
OS: Any   

Description Douglas S. J. De Couto 2001-12-15 21:10:00 UTC

    
Comment 1 Douglas De Couto 2001-12-15 22:56:14 UTC
  aargh, there was a formatting error in the ancontrol.c patch, the 
patch i submitted had:

+ 
   printf("%3u %3u -%3u\n", i,
+ 
	 (unsigned int) entry->an_rss_pct,
+ 
	 (unsigned int) entry->an_rss_dbm);

it should be:

+ 
   printf("%3u %3u %4u\n", i,
+ 
	 (unsigned int) entry->an_rss_pct,
+ 
	 - (int) entry->an_rss_dbm);

d
-- 
Douglas S. J. De Couto    decouto@lcs.mit.edu
Comment 2 Sheldon Hearn freebsd_committer freebsd_triage 2001-12-30 13:08:04 UTC
Responsible Changed
From-To: freebsd-bugs->brooks

Mr. Davis, looks like you took over from Bill as the Aironet maintainer? 
:-)
Comment 3 Brooks Davis freebsd_committer freebsd_triage 2001-12-30 19:14:14 UTC
Responsible Changed
From-To: brooks->ambrisko

Doug has been doing the real work on the an driver.  I've just been slackigng 
on commiting his work so I'll pass the buck.
Comment 4 Doug Ambrisko freebsd_committer freebsd_triage 2002-12-29 19:22:42 UTC
State Changed
From-To: open->closed

This has been put into -current now.  It required some more work and 
I also enhanced it some more.