Update of /cvsroot/firebug/fireboard/beta/tools/src/xlisten
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12034
Modified Files:
Makefile xpacket.c
Log Message:
fireboard now correctly processes packets.
Index: xpacket.c
===================================================================
RCS file: /cvsroot/firebug/fireboard/beta/tools/src/xlisten/xpacket.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** xpacket.c 24 May 2005 21:50:42 -0000 1.3
--- xpacket.c 27 May 2005 20:17:34 -0000 1.4
***************
*** 41,46 ****
mts310_initialize(); /* From boards/mts300.c */
mts400_initialize(); /* From boards/mts400.c */
! mts420_initialize(); /* From boards/mts400.c */
mts510_initialize(); /* From boards/mts510.c */
--- 41,49 ----
mts310_initialize(); /* From boards/mts300.c */
+ fireboard_initialize();
+
mts400_initialize(); /* From boards/mts400.c */
! //mts420_initialize(); /* From boards/mts400.c */
!
mts510_initialize(); /* From boards/mts510.c */
Index: Makefile
===================================================================
RCS file: /cvsroot/firebug/fireboard/beta/tools/src/xlisten/Makefile,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Makefile 24 May 2005 21:50:36 -0000 1.3
--- Makefile 27 May 2005 20:17:34 -0000 1.4
***************
*** 15,19 ****
SRCS += boards/mts300.c boards/mts400.c boards/mts510.c boards/mts101.c
SRCS += boards/mep500.c boards/mep401.c boards/ggbacltst.c
! SRCS += boards/mica2.c boards/mica2dot.c boards/micaz.c
# Add Mote Data Aquisition board support
--- 15,21 ----
SRCS += boards/mts300.c boards/mts400.c boards/mts510.c boards/mts101.c
SRCS += boards/mep500.c boards/mep401.c boards/ggbacltst.c
! SRCS += boards/mica2.c boards/mica2dot.c boards/micaz.c boards/fireboard.c
!
! INCLUDES = ../../../tos/sensorboards/mts400/GPS
# Add Mote Data Aquisition board support
***************
*** 35,42 ****
xlisten: $(SRCS)
! $(CC) $(CFLAGS) -o $@ $(SRCS) $(LFLAGS)
xlisten-arm: $(SRCS)
! $(ARMCC) -I$(INCDIR) $(CFLAGS) -o $@ $(SRCS) -L$(LIBDIR) $(LFLAGS)
clean:
--- 37,44 ----
xlisten: $(SRCS)
! $(CC) $(CFLAGS) -o $@ $(SRCS) -I$(INCLUDES) $(LFLAGS)
xlisten-arm: $(SRCS)
! $(ARMCC) -I$(INCDIR) $(CFLAGS) -o $@ $(SRCS) -L$(LIBDIR) $(LFLAGS)
clean:
|