svn commit: r227380 - head/sys/dev/ath/ath_hal/ar5416

Adrian Chadd adrian at FreeBSD.org
Wed Nov 9 05:45:31 UTC 2011


Author: adrian
Date: Wed Nov  9 05:45:30 2011
New Revision: 227380
URL: http://svn.freebsd.org/changeset/base/227380

Log:
  Disable OFDM weak signal detection by default. Leave this to be
  enabled if required by STA operation.
  
  This quietens a lot of OFDM errors seen in hostap mode, where
  there are no beacon RSSI levels to tune the dynamic range of the
  baseband.
  
  This may reduce reception range at the fringes, but does increase
  stability.
  
  Sponsored by:	Hobnob, Inc.

Modified:
  head/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c

Modified: head/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c	Wed Nov  9 05:43:48 2011	(r227379)
+++ head/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c	Wed Nov  9 05:45:30 2011	(r227380)
@@ -631,7 +631,7 @@ ar5416AniReset(struct ath_hal *ah, const
 		ar5416AniControl(ah, HAL_ANI_NOISE_IMMUNITY_LEVEL, 0);
 		ar5416AniControl(ah, HAL_ANI_SPUR_IMMUNITY_LEVEL, 0);
 		ar5416AniControl(ah, HAL_ANI_OFDM_WEAK_SIGNAL_DETECTION,
-			AH_TRUE);
+			AH_FALSE);
 		ar5416AniControl(ah, HAL_ANI_CCK_WEAK_SIGNAL_THR, AH_FALSE);
 		ar5416AniControl(ah, HAL_ANI_FIRSTEP_LEVEL, 0);
 		ichan->privFlags |= CHANNEL_ANI_SETUP;


More information about the svn-src-head mailing list