X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=tos%2Fchips%2Fcc2420%2FCC2420.h;h=798107f0ebcb0367ee9e7822cfc8d1b5d0ca095c;hb=62d558a6db9cf823c7926fc74ed5610a0dcbad23;hp=a3413ec2d061721657aa2ac0ee963e2ab0e734a3;hpb=81f1bef4c045127874d88fe2737cc1bf84e57d0b;p=tinyos-2.x.git diff --git a/tos/chips/cc2420/CC2420.h b/tos/chips/cc2420/CC2420.h index a3413ec2..798107f0 100644 --- a/tos/chips/cc2420/CC2420.h +++ b/tos/chips/cc2420/CC2420.h @@ -43,8 +43,43 @@ typedef uint8_t cc2420_status_t; #endif /** - * CC2420 header. An I-frame (interoperability frame) header has an - * extra network byte specified by 6LowPAN + * CC2420 header definition. + * + * An I-frame (interoperability frame) header has an extra network + * byte specified by 6LowPAN + * + * Length = length of the header + payload of the packet, minus the size + * of the length byte itself (1). This is what allows for variable + * length packets. + * + * FCF = Frame Control Field, defined in the 802.15.4 specs and the + * CC2420 datasheet. + * + * DSN = Data Sequence Number, a number incremented for each packet sent + * by a particular node. This is used in acknowledging that packet, + * and also filtering out duplicate packets. + * + * DestPan = The destination PAN (personal area network) ID, so your + * network can sit side by side with another TinyOS network and not + * interfere. + * + * Dest = The destination address of this packet. 0xFFFF is the broadcast + * address. + * + * Src = The local node ID that generated the message. + * + * Network = The TinyOS network ID, for interoperability with other types + * of 802.15.4 networks. + * + * Type = TinyOS AM type. When you create a new AMSenderC(AM_MYMSG), + * the AM_MYMSG definition is the type of packet. + * + * TOSH_DATA_LENGTH defaults to 28, it represents the maximum size of + * the payload portion of the packet, and is specified in the + * tos/types/message.h file. + * + * All of these fields will be filled in automatically by the radio stack + * when you attempt to send a message. */ typedef nx_struct cc2420_header_t { nxle_uint8_t length; @@ -84,7 +119,8 @@ typedef nx_struct cc2420_metadata_t { nx_uint8_t tx_power; nx_bool crc; nx_bool ack; - nx_uint16_t time; + nx_bool timesync; + nx_uint32_t timestamp; nx_uint16_t rxInterval; /** Packet Link Metadata */ @@ -137,6 +173,8 @@ enum { MAC_FOOTER_SIZE = sizeof( uint16_t ), // MDU MAC_PACKET_SIZE = MAC_HEADER_SIZE + TOSH_DATA_LENGTH + MAC_FOOTER_SIZE, + + CC2420_SIZE = MAC_HEADER_SIZE + MAC_FOOTER_SIZE, }; enum cc2420_enums { @@ -369,4 +407,9 @@ enum cc2420_sfdmux_enums { CC2420_SFDMUX_XOSC16M_STABLE = 24, }; +enum +{ + CC2420_INVALID_TIMESTAMP = 0x80000000L, +}; + #endif