]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
repaired warnings on comilation to html
authorbeutel <beutel>
Thu, 14 Jun 2007 18:25:26 +0000 (18:25 +0000)
committerbeutel <beutel>
Thu, 14 Jun 2007 18:25:26 +0000 (18:25 +0000)
doc/txt/tep118.txt
doc/txt/tep127.txt

index 5ffb7ba3bc99eca54125d1def1ad5d5929b4ea0d..48ab4e4cb1424824ce12e136cb85f369b60b78b0 100644 (file)
@@ -113,7 +113,7 @@ which has the following signature::
     provides interface DisseminationUpdate <t>;
   }
 
-The t argument MUST be able to fit in a single message_t[tep111_]  after
+The t argument MUST be able to fit in a single message_t [TEP111] after
 considering the headers that the dissemination protocol introduces.
 A dissemination implementation SHOULD have a compile error if a larger
 type than this is used.
index 83408ecc6ba9c4e68394a14d5d9e5fc8b99579ad..d17f5da881bf6225a2b98a5032a518f227c6b65f 100644 (file)
@@ -103,24 +103,30 @@ The TEP proposes this PacketLink interface:::
     command bool wasDelivered(message_t *msg);
   }
 
+PacketLinks interface functions:
 
-setRetries(message_t *msg, uint16_t maxRetries)
- - Sets the maximum number of times to retry the transmission of the message
+  ``setRetries(message_t *msg, uint16_t maxRetries)``
 
-setRetryDelay(message_t *msg, uint16_t retryDelay)
- - Set the delay, in milliseconds, between each retransmission
+- Sets the maximum number of times to retry the transmission of the message
 
-getRetries(message_t *msg)
- - Returns the maximum number of retries configured for the given message
+  ``setRetryDelay(message_t *msg, uint16_t retryDelay)``
 
-getRetryDelay(message_t *msg)
- - Returns the delay, in milliseconds, between each retransmission for the
-   given message
+- Set the delay, in milliseconds, between each retransmission
 
-wasDelivered(message_t *msg)
- - This command may be called after the sendDone() event is signaled. It
-   is the equivalent of PacketAcknowledgements.wasAcked(message_t *msg), so
-   is only a helper function to make the PacketLink interface easier to use.
+  ``getRetries(message_t *msg)``
+
+- Returns the maximum number of retries configured for the given message
+
+  ``getRetryDelay(message_t *msg)``
+
+- Returns the delay, in milliseconds, between each retransmission for the given 
+  message
+
+  ``wasDelivered(message_t *msg)``
+- This command may be called after the sendDone() event is signaled. It is the 
+  equivalent of ``PacketAcknowledgements.wasAcked(message_t *msg)``, so is only 
+  a helper function to make the PacketLink interface easier to use.