From: gnawali Date: Tue, 25 Sep 2007 00:54:24 +0000 (+0000) Subject: return 0 by default so the link estimator does not insert the source if there is... X-Git-Tag: release_tinyos_2_1_0_0~710 X-Git-Url: https://oss.titaniummirror.com/gitweb/?p=tinyos-2.x.git;a=commitdiff_plain;h=db85502af684b5df96b9cba55da84a7431113bef return 0 by default so the link estimator does not insert the source if there is no room for it --- diff --git a/tos/lib/net/ctp/DummyActiveMessageP.nc b/tos/lib/net/ctp/DummyActiveMessageP.nc index e4cc0f98..243f497d 100644 --- a/tos/lib/net/ctp/DummyActiveMessageP.nc +++ b/tos/lib/net/ctp/DummyActiveMessageP.nc @@ -6,7 +6,7 @@ implementation { async command bool LinkPacketMetadata.highChannelQuality(message_t* msg) { - return 1; + return 0; } }