]> oss.titaniummirror.com Git - tinyos-2.x.git/blobdiff - tos/platforms/iris/platform_message.h
moving files from rf230 to rf2xx, prepare the support of rf212
[tinyos-2.x.git] / tos / platforms / iris / platform_message.h
index cdf078aeb99592de7fd55ae9ba55c3302ef89cb9..e3245c968a17ac9c375b83492e3e4f0d4d4c00c1 100644 (file)
 #ifndef PLATFORM_MESSAGE_H
 #define PLATFORM_MESSAGE_H
 
-#include <RF2xxPacket.h>
+#include <RF230Packet.h>
 #include <Serial.h>
 
 typedef union message_header {
-       rf2xxpacket_header_t rf2xx;
+       rf230packet_header_t rf230;
        serial_header_t serial;
 } message_header_t;
 
 typedef union message_footer {
-       rf2xxpacket_footer_t rf2xx;
+       rf230packet_footer_t rf230;
 } message_footer_t;
 
 typedef union message_metadata {
-       rf2xxpacket_metadata_t rf2xx;
+       rf230packet_metadata_t rf230;
 } message_metadata_t;
 
 #endif