X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=tos%2Finterfaces%2FAMPacket.nc;h=af0d5fa12e83ceea3f1da601ee0e271cabbf8576;hb=7bae398b43f69d024cf524349705fee97ab002ae;hp=f403c21d18b84a5b28fa7ace4d5243b351a4ecc7;hpb=d51dc49cd705145ea6ae56e4575965f35757c6c3;p=tinyos-2.x.git diff --git a/tos/interfaces/AMPacket.nc b/tos/interfaces/AMPacket.nc index f403c21d..af0d5fa1 100644 --- a/tos/interfaces/AMPacket.nc +++ b/tos/interfaces/AMPacket.nc @@ -1,5 +1,5 @@ // $Id$ -/* tab:4 +/* * "Copyright (c) 2004-5 The Regents of the University of California. * All rights reserved. * @@ -60,7 +60,7 @@ interface AMPacket { * Return the AM address of the destination of the AM packet. * If amsg is not an AM packet, the results of this command * are undefined. - * @param amsg the packet + * @param 'message_t* ONE amsg' the packet * @return the destination address of the packet. */ @@ -70,7 +70,7 @@ interface AMPacket { * Return the AM address of the source of the AM packet. * If amsg is not an AM packet, the results of this command * are undefined. - * @param amsg the packet + * @param 'message_t* ONE amsg' the packet * @return the source address of the packet. */ @@ -85,7 +85,7 @@ interface AMPacket { * and then recover it when actually sending. If amsg is * not an AM packet, the results of this command are undefined. * - * @param amsg the packet + * @param 'message_t* ONE amsg' the packet * @param addr the address */ @@ -103,7 +103,7 @@ interface AMPacket { * layer (e.g., a protocol bridge). If amsg is * not an AM packet, the results of this command are undefined. * - * @param amsg the packet + * @param 'message_t* ONE amsg' the packet * @param addr the address */ @@ -119,7 +119,7 @@ interface AMPacket { * the mote's local address. If amsg is not an AM packet, * the results of this command are undefined. * - * @param amsg the packet + * @param 'message_t* ONE amsg' the packet * @return whether the packet is addressed to this AM stack */ command bool isForMe(message_t* amsg); @@ -129,7 +129,7 @@ interface AMPacket { * If amsg is not an AM packet, the results of this command * are undefined. * - * @param amsg the packet + * @param 'message_t* ONE amsg' the packet * @return the AM type */ @@ -144,7 +144,7 @@ interface AMPacket { * sending. If amsg is not an AM packet, the results of * this command are undefined. * - * @param amsg the packet + * @param 'message_t* ONE amsg' the packet * @param t the AM type */ @@ -159,7 +159,7 @@ interface AMPacket { * nodes only receive packets whose AM group field matches their * own. * - * @param amsg the packet + * @param 'message_t* ONE amsg' the packet * @return the AM group of this packet */ @@ -170,7 +170,7 @@ interface AMPacket { * stacks will set this field automatically on a send request, which * may overwrite changes made with this command. * - * @param amsg the packet + * @param 'message_t* ONE amsg' the packet * @param group the packet's new AM group value */ command void setGroup(message_t* amsg, am_group_t grp);