]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/interfaces/UartStream.nc
Fix the issue with tos-deluge not timing out properly.
[tinyos-2.x.git] / tos / interfaces / UartStream.nc
index 6f4e320a267a7384e361d1e990e3b8e4e7cc9cb9..08a2567c369f0a8310c637fded666bf8fc8fd95e 100644 (file)
@@ -41,7 +41,7 @@ interface UartStream {
    * <code>sendDone</code> will be signalled when transmission is
    * complete.
    *
-   * @param buf Buffer for bytes to send.
+   * @param 'uint8_t* COUNT(len) buf' Buffer for bytes to send.
    * @param len Number of bytes to send.
    * @return SUCCESS if request was accepted, FAIL otherwise.
    */
@@ -50,7 +50,7 @@ interface UartStream {
   /**
    * Signal completion of sending a stream.
    *
-   * @param buf Bytes sent.
+   * @param 'uint8_t* COUNT(len) buf' Bytes sent.
    * @param len Number of bytes sent.
    * @param error SUCCESS if the transmission was successful, FAIL otherwise.
    */
@@ -83,7 +83,7 @@ interface UartStream {
    * <code>receiveDone</code> will be signalled when reception is
    * complete.
    *
-   * @param buf Buffer for received bytes.
+   * @param 'uint8_t* COUNT(len) buf' Buffer for received bytes.
    * @param len Number of bytes to receive.
    * @return SUCCESS if request was accepted, FAIL otherwise.
    */
@@ -92,7 +92,7 @@ interface UartStream {
   /**
    * Signal completion of receiving a stream.
    *
-   * @param buf Buffer for bytes received.
+   * @param 'uint8_t* COUNT(len) buf' Buffer for bytes received.
    * @param len Number of bytes received.
    * @param error SUCCESS if the reception was successful, FAIL otherwise.
    */