]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/platforms/eyesIFX/WhiteBitAccessorC.nc
ASCII
[tinyos-2.x.git] / tos / platforms / eyesIFX / WhiteBitAccessorC.nc
index 2696750639067f25a32d62e4a2e9328ca2579045..fdd9872a37d8b3296132713ce3d2f94b41a10531 100644 (file)
@@ -30,7 +30,7 @@
 /**
  * Accessor module for link quality
  *  
- * @author Andreas Kรถpke <koepke@tkn.tu-berlin.de>
+ * @author Andreas Koepke <koepke@tkn.tu-berlin.de>
  */
 
 #include "radiopacketfunctions.h"
@@ -43,7 +43,7 @@ module WhiteBitAccessorC {
 implementation {
     async command bool LinkPacketMetadata.highChannelQuality(message_t* msg) {
         bool res = FALSE;
-        if(getMetadata(msg)->strength > 15) res = TRUE;
+        if(getMetadata(msg)->strength > 13) res = TRUE;
         return res;
     }
 }