svn commit: r234777 - head/tools/tools/ath/athsurvey

Adrian Chadd adrian at FreeBSD.org
Sat Apr 28 23:13:09 UTC 2012


Author: adrian
Date: Sat Apr 28 23:13:09 2012
New Revision: 234777
URL: http://svn.freebsd.org/changeset/base/234777

Log:
  Change cc -> bc : "bc" is "busy count", which is the % of time the channel
  is considered "busy but not doing any active TX or frame RX."
  
  Just keep in mind that "frame RX" is "decoding what looks like a wifi
  signal", not necessarily "frame successfully decoded for this particular
  device."

Modified:
  head/tools/tools/ath/athsurvey/athsurvey.c

Modified: head/tools/tools/ath/athsurvey/athsurvey.c
==============================================================================
--- head/tools/tools/ath/athsurvey/athsurvey.c	Sat Apr 28 23:05:08 2012	(r234776)
+++ head/tools/tools/ath/athsurvey/athsurvey.c	Sat Apr 28 23:13:09 2012	(r234777)
@@ -201,9 +201,9 @@ main(int argc, char *argv[])
 			    "min                   "
 			    "avg                   "
 			    "max\n");
-			printf("  tx%%  rx%%  cc%%  ec%%  ");
-			printf("  tx%%  rx%%  cc%%  ec%%  ");
-			printf("  tx%%  rx%%  cc%%  ec%%\n");
+			printf("  tx%%  rx%%  bc%%  ec%%  ");
+			printf("  tx%%  rx%%  bc%%  ec%%  ");
+			printf("  tx%%  rx%%  bc%%  ec%%\n");
 		}
 		process_survey_stats(&hs);
 		sleep(1);


More information about the svn-src-head mailing list