]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/platforms/iris/ActiveMessageC.nc
add default Ieee154MessageC wiring
[tinyos-2.x.git] / tos / platforms / iris / ActiveMessageC.nc
index 39f07fa252f2a495cceea721303b6857d946156e..b9273dac1a895cab81f8a8648b80550f8babe9ff 100644 (file)
@@ -30,6 +30,8 @@ configuration ActiveMessageC
                interface AMSend[uint8_t id];
                interface Receive[uint8_t id];
                interface Receive as Snoop[uint8_t id];
+               interface SendNotifier[am_id_t id];
+
                interface Packet;
                interface AMPacket;
 
@@ -49,17 +51,21 @@ implementation
        components RF230ActiveMessageC as MAC;
 
        SplitControl    = MAC;
+
        AMSend          = MAC;
        Receive         = MAC.Receive;
        Snoop           = MAC.Snoop;
+       SendNotifier    = MAC;
+
        Packet          = MAC;
        AMPacket        = MAC;
+
+       PacketAcknowledgements  = MAC;
+       LowPowerListening       = MAC;
 #ifdef PACKET_LINK
        PacketLink      = MAC;
 #endif
 
-       PacketAcknowledgements  = MAC;
-       LowPowerListening       = MAC;
        PacketTimeStampMilli    = MAC;
        PacketTimeStampMicro    = MAC;
 }