]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
added IRIS to the supported platforms
authorsallai <sallai>
Tue, 1 Jul 2008 23:46:20 +0000 (23:46 +0000)
committersallai <sallai>
Tue, 1 Jul 2008 23:46:20 +0000 (23:46 +0000)
apps/tests/TestLPL/README.txt
apps/tests/TestLPL/TestLplAppC.nc

index f8c81df30d384872daa1eb620e5d1334c0f0650c..1add1755a7163a15b5ff7f843d452534bfc89850 100644 (file)
@@ -6,8 +6,9 @@ Description:
 A simple low-power-listening test app, which cycles through different
 low-power-listening settings every ~32s, repeating every ~256s. 
 
-This application currently runs on motes using the CC1000 and CC2420
-radios. To compile for motes with CC2420 radios, you must do:
+This application currently runs on motes using the CC1000, CC2420 and
+RF230 radios. To compile for motes with CC2420 or RF230 radios, you
+must do:
   env CFLAGS="-DLOW_POWER_LISTENING" make <platform>
 
 This application blinks LED 0 every time it sends a message, and toggles
index ecd07717665518b6f68b3fba575986560892390c..997cb9d75e57b1ff50118d483afbe93ef27ea870 100644 (file)
@@ -47,6 +47,8 @@ implementation {
   components CC1000CsmaRadioC as LplRadio;
 #elif defined(PLATFORM_MICAZ) || defined(PLATFORM_TELOSB) || defined(PLATFORM_SHIMMER)
   components CC2420ActiveMessageC as LplRadio;
+#elif defined(PLATFORM_IRIS)
+  components RF230ActiveMessageC as LplRadio;
 #else
 #error "LPL testing not supported on this platform"
 #endif