]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/lib/net/zigbee/wrapper/WrapperC.nc
*** empty log message ***
[tinyos-2.x.git] / tos / lib / net / zigbee / wrapper / WrapperC.nc
index 1e6033bdade1800aef94465a6953e4952c21bd2b..eacc1dc8f059b3072de73afd701913719185f95b 100644 (file)
@@ -5,6 +5,8 @@
  * ========================================================================
  */ 
 
+// move to a header file?
+#define WRAPPER_MESSAGE_QUEUE_SIZE 5
 
 configuration WrapperC
 {
@@ -58,8 +60,12 @@ implementation
   WrapperM.MLME_SCAN -> MAC;
     
   WrapperM.MCPS_DATA -> MAC;
+  WrapperM.IEEE154Frame -> MAC;
+  WrapperM.IEEE154BeaconFrame -> MAC;
+  WrapperM.Packet -> MAC;
 
-
+  components new PoolC(message_t, WRAPPER_MESSAGE_QUEUE_SIZE) as MessagePool;
+  WrapperM.MessagePool -> MessagePool;
 
 
   OPENZB_MLME_RESET = WrapperM;
@@ -85,4 +91,4 @@ implementation
 
 
 
-}
\ No newline at end of file
+}