Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Apr 2012 23:13:09 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r234777 - head/tools/tools/ath/athsurvey
Message-ID:  <201204282313.q3SND9rU085146@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201204282313.q3SND9rU085146>