On Wed, 2006-04-19 at 01:14 +0800, swim_in_sky wrote: > Hi,everyone > In serial communication system in the tinyos-2.x What role does > the Serial header "serial_header_t" bear ? In serial communication, > it seems I do not need to deal with it .
serial_header_t is the packet header used for platform-independent active messages. It is the solution to the 1.x problem of each platform having its own serial packet header format (which happens to be the same as the radio header format). The serial system also allows you to send other kinds of serial packets, if needed, so you can on an 802.15.4 platform send raw 802.15.4 packets for bridging/sniffing, but by default applications send the platform-independent ones. TEP 113 goes into the details. Phil _______________________________________________ Tinyos-help mailing list [email protected] https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
