]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/lib/net/Deluge/extra/NetProgC.nc
Added DelugeT2 support for the tinynode platform.
[tinyos-2.x.git] / tos / lib / net / Deluge / extra / NetProgC.nc
index 9857964a1b9afd1e05868e9b746b66f99c7fcef4..79bad7651dd654b4bde4b9323cf9de1b9687ada2 100644 (file)
@@ -40,14 +40,14 @@ configuration NetProgC {
 
 implementation {
 
-  components MainC, InternalFlashC as IFlash, CrcP;
+  components MainC, InternalFlashC as IFlash, CrcC;
   components NetProgM, ReprogramGuardC;
 
   NetProg = NetProgM;
 
   MainC.SoftwareInit -> NetProgM.Init;
   NetProgM.IFlash -> IFlash;
-  NetProgM.Crc -> CrcP;
+  NetProgM.Crc -> CrcC;
   NetProgM.ReprogramGuard -> ReprogramGuardC;
 
   components LedsC;
@@ -56,7 +56,7 @@ implementation {
   components ActiveMessageAddressC;
   NetProgM.setAmAddress -> ActiveMessageAddressC;
 
-#if !defined(PLATFORM_MULLE)
+#if !defined(PLATFORM_TINYNODE)
   components CC2420ControlP;
   NetProgM.CC2420Config -> CC2420ControlP;
 #endif