]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/lib/tosthreads/csystem/CAMSerialP.nc
Initial checkin of tosthreads stuff...
[tinyos-2.x.git] / tos / lib / tosthreads / csystem / CAMSerialP.nc
diff --git a/tos/lib/tosthreads/csystem/CAMSerialP.nc b/tos/lib/tosthreads/csystem/CAMSerialP.nc
new file mode 100644 (file)
index 0000000..fea5963
--- /dev/null
@@ -0,0 +1,111 @@
+/*
+ * Copyright (c) 2008 Johns Hopkins University.
+ * All rights reserved.
+ *
+ * Permission to use, copy, modify, and distribute this software and its
+ * documentation for any purpose, without fee, and without written
+ * agreement is hereby granted, provided that the above copyright
+ * notice, the (updated) modification history and the author appear in
+ * all copies of this source code.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, LOSS OF USE, DATA,
+ * OR PROFITS) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+*/
+
+/**
+ * @author Chieh-Jan Mike Liang <cliang4@cs.jhu.edu>
+ */
+
+module CAMSerialP {
+  uses {
+    interface BlockingStdControl;
+    interface BlockingReceive[am_id_t amId];
+    interface BlockingReceive as BlockingReceiveAny;
+    interface BlockingAMSend as Send[am_id_t id];
+    interface Packet;
+    interface AMPacket;
+    interface PacketAcknowledgements;
+  }
+}
+implementation {
+  error_t amSerialStart() @C() @spontaneous() { 
+    return call BlockingStdControl.start();
+  }
+  error_t amSerialStop() @C() @spontaneous() { 
+    return call BlockingStdControl.stop();
+  }
+  error_t amSerialReceive(message_t* m, uint32_t timeout, am_id_t amId) @C() @spontaneous() {
+    if(amId == AM_RECEIVE_FROM_ANY)
+      return call BlockingReceiveAny.receive(m, timeout);
+    else 
+      return call BlockingReceive.receive[amId](m, timeout);
+  }
+  error_t amSerialSend(am_addr_t addr, message_t* msg, uint8_t len, am_id_t amId) @C() @spontaneous() {
+    return call Send.send[amId](addr, msg, len);
+  }
+  am_addr_t amSerialLocalAddress() @C() @spontaneous() {
+    return call AMPacket.address();
+  }
+  am_group_t amSerialGetLocalGroup() @C() @spontaneous() {
+    return call AMPacket.localGroup();
+  }
+  am_addr_t amSerialGetDestination(message_t* amsg) @C() @spontaneous() {
+    return call AMPacket.destination(amsg);
+  }
+  am_addr_t amSerialGetSource(message_t* amsg) @C() @spontaneous() {
+    return call AMPacket.source(amsg);
+  }
+  void amSerialSetDestination(message_t* amsg, am_addr_t addr) @C() @spontaneous() {
+    call AMPacket.setDestination(amsg, addr);
+  }
+  void amSerialSetSource(message_t* amsg, am_addr_t addr) @C() @spontaneous() {
+    return call AMPacket.setSource(amsg, addr);
+  }
+  bool amSerialIsForMe(message_t* amsg) @C() @spontaneous() {
+    return call AMPacket.isForMe(amsg);
+  }
+  am_id_t amSerialGetType(message_t* amsg) @C() @spontaneous() {
+    return call AMPacket.type(amsg);
+  }
+  void amSerialSetType(message_t* amsg, am_id_t t) @C() @spontaneous() {
+    call AMPacket.setType(amsg, t);
+  }
+  am_group_t amSerialGetGroup(message_t* amsg) @C() @spontaneous() {
+    return call AMPacket.group(amsg);
+  }
+  void amSerialSetGroup(message_t* amsg, am_group_t grp) @C() @spontaneous() {
+    return call AMPacket.setGroup(amsg, grp);
+  }
+  void serialClear(message_t* msg) @C() @spontaneous() {
+    call Packet.clear(msg);
+  }
+  uint8_t serialGetPayloadLength(message_t* msg) @C() @spontaneous() {
+    return call Packet.payloadLength(msg);
+  }
+  void  serialSetPayloadLength(message_t* msg, uint8_t len) @C() @spontaneous() {
+    call Packet.setPayloadLength(msg, len);
+  }
+  uint8_t serialMaxPayloadLength() @C() @spontaneous() {
+    return call Packet.maxPayloadLength();
+  }
+  void* serialGetPayload(message_t* msg, uint8_t len) @C() @spontaneous() {
+    return call Packet.getPayload(msg, len);
+  }
+  error_t serialRequestAck( message_t* msg ) @C() @spontaneous() {
+    return call PacketAcknowledgements.requestAck(msg);
+  }
+  error_t serialNoAck( message_t* msg ) @C() @spontaneous() {
+    return call PacketAcknowledgements.noAck(msg);
+  }
+  bool serialWasAcked(message_t* msg) @C() @spontaneous() {
+    return call PacketAcknowledgements.wasAcked(msg);
+  }
+}