]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - apps/tests/tkn154/TestData/coordinator/TestDataAppC.nc
- re-designed the radio driver interfaces, restructured/improved the CC2420 radio...
[tinyos-2.x.git] / apps / tests / tkn154 / TestData / coordinator / TestDataAppC.nc
index eeb8d0db4563f7517940354e4dea07359c7ac40f..4c48516190f68289be780cfd8be2155c87e6fc36 100644 (file)
  * @author: Jan Hauer <hauer@tkn.tu-berlin.de>
  * ========================================================================
  */
-
+#include "app_profile.h"
 configuration TestDataAppC
 {
 } implementation {
-  components MainC, LedsC, Ieee802154MacC;
+  components MainC, LedsC, Ieee802154BeaconEnabledC as MAC;
 
   components TestCoordReceiverC as App;
-  App.MLME_START -> Ieee802154MacC;
-  App.MCPS_DATA -> Ieee802154MacC;
-  App.Frame -> Ieee802154MacC;
+  App.MLME_START -> MAC;
+  App.MCPS_DATA -> MAC;
+  App.Frame -> MAC;
 
   MainC.Boot <- App;
   App.Leds -> LedsC;
-  App.MLME_RESET -> Ieee802154MacC;
-  App.MLME_SET -> Ieee802154MacC;
-  App.MLME_GET -> Ieee802154MacC;
-  App.IEEE154TxBeaconPayload -> Ieee802154MacC;
+  App.MLME_RESET -> MAC;
+  App.MLME_SET -> MAC;
+  App.MLME_GET -> MAC;
+  App.IEEE154TxBeaconPayload -> MAC;
 }