]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/chips/cc2420/README.txt
Fix sf reference.
[tinyos-2.x.git] / tos / chips / cc2420 / README.txt
index 33d184be5b10939d4eca7fef94d8a8fc722907a9..e9409be12f714e0e49f9f5c69eb65f023ecd900f 100644 (file)
@@ -1,4 +1,21 @@
 
+To compile in the default Ack LPL version, #define the preprocessor variable:
+  LOW_POWER_LISTENING
+  
+To compile in the PacketLink (auto-retransmission) layer, #define:
+  PACKET_LINK
+  
+To remove all acknowledgements, #define (or use CC2420Config in 2.0.2)
+  CC2420_NO_ACKNOWLEDGEMENTS
+  
+To use hardware auto-acks instead of software acks, #define:
+  CC2420_HW_ACKNOWLEDGEMENTS
+
+To stop using address recognition on the radio hardware, #define:
+  CC2420_NO_ADDRESS_RECOGNITION
+
+
+
 ============================================================
 CC2420 2.0.2 Release Notes 7/2/07
 
@@ -40,6 +57,19 @@ __________________________________________
   packet's destpan after send().
 
 
+7/5/07:
+* Added two methods to enable/disable automatic address recognition:
+  - Preprocessor CC2420_NO_ADDRESS_RECOGNITION to disable address recognition at
+    compile time
+  - CC2420Config.setAddressRecognition(bool on) through CC2420ControlC
+
+* Allowed the CC2420ReceiveP to perform software address checks to support
+  the case where a base station type application must sniff packets from other 
+  address, but also SACK packets destined for its address
+  
+* Updated CC2420Config interface to provide an async getShortAddr() and getPanAddr()
+
+
 Known issues
 __________________________________________
 
@@ -87,16 +117,3 @@ the Ack LPL version.  The radio continuously modulates the channel when
 delivering its packetized preamble.  This is better for fast receive check,
 low transmission rate networks.
 
-To compile in the default Ack LPL version, #define the preprocessor variable:
-  LOW_POWER_LISTENING
-  
-To compile in the PacketLink (auto-retransmission) layer, #define:
-  PACKET_LINK
-  
-To remove all acknowledgements, #define (or use CC2420Config in 2.0.2)
-  CC2420_NO_ACKNOWLEDGEMENTS
-  
-To use hardware auto-acks instead of software acks, #define:
-  CC2420_HW_ACKNOWLEDGEMENTS
-
-