]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/lib/net/le/LinkEstimator.nc
fix the get link quality interfaces to return 16 bit eetx values
[tinyos-2.x.git] / tos / lib / net / le / LinkEstimator.nc
index 8e7a5df4ee2bf04950d36f3af51ed5ecc92052b9..ad9eaf6a61542f27c6efbf6e6b1f66552803f9bf 100644 (file)
 interface LinkEstimator {
   
   /* get bi-directional link quality for link to the neighbor */
-  command uint8_t getLinkQuality(uint16_t neighbor);
+  command uint16_t getLinkQuality(uint16_t neighbor);
 
   /* get quality of the link from neighbor to this node */
-  command uint8_t getReverseQuality(uint16_t neighbor);
+  command uint16_t getReverseQuality(uint16_t neighbor);
 
   /* get quality of the link from this node to the neighbor */
-  command uint8_t getForwardQuality(uint16_t neighbor);
+  command uint16_t getForwardQuality(uint16_t neighbor);
 
   /* insert this neighbor into the neighbor table */
   command error_t insertNeighbor(am_addr_t neighbor);