Update of /cvsroot/firebug/fireboard/beta/tools/src/xlisten
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv388
Added Files:
xpacket.h
Log Message:
Added rest of boards.
--- NEW FILE: xpacket.h ---
/**
* Handles parsing of xsensor packets.
*
* @file xpacket.h
* @author Martin Turon
* @version 2004/2/18 mturon Initial version
*
* Copyright (c) 2004-2005 Crossbow Technology, Inc. All rights reserved.
*
* $Id: xpacket.h,v 1.1 2005/05/24 22:14:35 doolin Exp $
*/
typedef struct TosMsg
{
uint16_t addr;
uint8_t am_type;
uint8_t group;
uint8_t length;
} __attribute__ ((packed)) TosMsg;
typedef struct MultihopMsg
{
uint16_t destaddr;
uint16_t nodeid;
int16_t seqno;
uint8_t hops;
} __attribute__ ((packed)) MultihopMsg;
|