[Firebug-cvs] fireboard/beta/tools/src/xlisten/boards fireboard.c,1.12,1.13 pg_test.c,1.7,1.8
Brought to you by:
doolin
From: David M. D. <do...@us...> - 2005-06-19 22:28:43
|
Update of /cvsroot/firebug/fireboard/beta/tools/src/xlisten/boards In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9568/boards Modified Files: fireboard.c pg_test.c Log Message: Database connection can now specified from the command using the -l option. Index: pg_test.c =================================================================== RCS file: /cvsroot/firebug/fireboard/beta/tools/src/xlisten/boards/pg_test.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** pg_test.c 17 Jun 2005 23:23:41 -0000 1.7 --- pg_test.c 19 Jun 2005 22:28:33 -0000 1.8 *************** *** 5,14 **** */ - #include <NMEA.h> - - #include "../xdb.h" - #include "../xsensors.h" ! // TODO: Condense tables down to gga, weather, etc. --- 5,13 ---- */ ! /* Not sure how the functions for the fireboard ! * should be handled, but this is a start. ! */ ! #include "fireboard.h" *************** *** 23,36 **** "temperature float, " "pressure float)"; - #if 0 - "intersemacal1 integer, " - "intersemacal2 integer, " - "intersemacal3 integer, " - "intersemacal4 integer," - "prtemp integer, " - "press integer, " - "taosch0 integer, " - "taosch1 integer, " - #endif --- 22,25 ---- *************** *** 169,170 **** --- 158,161 ---- xdb_execute(pg_statement); } + + Index: fireboard.c =================================================================== RCS file: /cvsroot/firebug/fireboard/beta/tools/src/xlisten/boards/fireboard.c,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** fireboard.c 1 Jun 2005 23:34:20 -0000 1.12 --- fireboard.c 19 Jun 2005 22:28:33 -0000 1.13 *************** *** 18,23 **** #include <sensorboardApp.h> ! #include "../xdb.h" ! #include "../xsensors.h" --- 18,22 ---- #include <sensorboardApp.h> ! #include "fireboard.h" |