[Firebug-cvs] fireboard/sensors/leadtek9546 ggaparse.c,1.2,1.3 gllparse.c,1.1,1.2 gsaparse.c,1.1,1.2
Brought to you by:
doolin
From: David M. D. <do...@us...> - 2004-08-31 13:31:21
|
Update of /cvsroot/firebug/fireboard/sensors/leadtek9546 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27327 Modified Files: ggaparse.c gllparse.c gsaparse.c gsvparse.c leadtek_9546.c mssparse.c nmea_parse.c nmea_parse.h nmea_parse_private.h nmea_parse_test.c nsew.c packer.c rmcparse.c vtgparse.c Log Message: Added header comments to code. Index: gsaparse.c =================================================================== RCS file: /cvsroot/firebug/fireboard/sensors/leadtek9546/gsaparse.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gsaparse.c 30 Aug 2004 17:03:38 -0000 1.1 --- gsaparse.c 31 Aug 2004 13:31:10 -0000 1.2 *************** *** 1,3 **** ! #include <stdio.h> --- 1,12 ---- ! /** ! * ! * This code is part of the NSF-ITR funded ! * FireBug project: ! * @url http://firebug.sourceforge.net ! * ! * @author David M. Doolin ! * ! * $Id$ ! */ #include <stdio.h> Index: gsvparse.c =================================================================== RCS file: /cvsroot/firebug/fireboard/sensors/leadtek9546/gsvparse.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gsvparse.c 30 Aug 2004 17:02:58 -0000 1.1 --- gsvparse.c 31 Aug 2004 13:31:10 -0000 1.2 *************** *** 1,3 **** --- 1,14 ---- + /** + * + * This code is part of the NSF-ITR funded + * FireBug project: + * @url http://firebug.sourceforge.net + * + * @author David M. Doolin + * + * $Id$ + * + */ Index: packer.c =================================================================== RCS file: /cvsroot/firebug/fireboard/sensors/leadtek9546/packer.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** packer.c 30 Aug 2004 17:02:58 -0000 1.1 --- packer.c 31 Aug 2004 13:31:10 -0000 1.2 *************** *** 1,2 **** --- 1,14 ---- + /** + * + * This code is part of the NSF-ITR funded + * FireBug project: + * @url http://firebug.sourceforge.net + * + * @author David M. Doolin + * + * $Id$ + * + */ + // Some macros for packing floats into uint16s Index: nmea_parse_test.c =================================================================== RCS file: /cvsroot/firebug/fireboard/sensors/leadtek9546/nmea_parse_test.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** nmea_parse_test.c 30 Aug 2004 21:37:48 -0000 1.2 --- nmea_parse_test.c 31 Aug 2004 13:31:10 -0000 1.3 *************** *** 1,3 **** ! #include <stdio.h> #include <string.h> --- 1,13 ---- ! /** ! * ! * This code is part of the NSF-ITR funded ! * FireBug project: ! * @url http://firebug.sourceforge.net ! * ! * @author David M. Doolin ! * ! * $Id$ ! * ! */ #include <stdio.h> #include <string.h> Index: rmcparse.c =================================================================== RCS file: /cvsroot/firebug/fireboard/sensors/leadtek9546/rmcparse.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** rmcparse.c 30 Aug 2004 17:02:58 -0000 1.1 --- rmcparse.c 31 Aug 2004 13:31:10 -0000 1.2 *************** *** 1,3 **** ! #include <stdio.h> --- 1,13 ---- ! /** ! * ! * This code is part of the NSF-ITR funded ! * FireBug project: ! * @url http://firebug.sourceforge.net ! * ! * @author David M. Doolin ! * ! * $Id$ ! * ! */ #include <stdio.h> Index: nsew.c =================================================================== RCS file: /cvsroot/firebug/fireboard/sensors/leadtek9546/nsew.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** nsew.c 30 Aug 2004 17:02:58 -0000 1.1 --- nsew.c 31 Aug 2004 13:31:10 -0000 1.2 *************** *** 1,2 **** --- 1,14 ---- + /** + * + * This code is part of the NSF-ITR funded + * FireBug project: + * @url http://firebug.sourceforge.net + * + * @author David M. Doolin + * + * $Id$ + * + */ + /* Check out what bit masking does to certain chars. */ Index: ggaparse.c =================================================================== RCS file: /cvsroot/firebug/fireboard/sensors/leadtek9546/ggaparse.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ggaparse.c 30 Aug 2004 21:37:48 -0000 1.2 --- ggaparse.c 31 Aug 2004 13:31:10 -0000 1.3 *************** *** 1,2 **** --- 1,11 ---- + /** + * + * This code is part of the NSF-ITR funded + * FireBug project: + * @url http://firebug.sourceforge.net + * + * @author David M. Doolin + * + * $Id$ #include <stdio.h> Index: nmea_parse.h =================================================================== RCS file: /cvsroot/firebug/fireboard/sensors/leadtek9546/nmea_parse.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** nmea_parse.h 30 Aug 2004 21:37:48 -0000 1.2 --- nmea_parse.h 31 Aug 2004 13:31:10 -0000 1.3 *************** *** 1,3 **** ! #ifndef NMEA_PARSE_H --- 1,13 ---- ! /** ! * ! * This code is part of the NSF-ITR funded ! * FireBug project: ! * @url http://firebug.sourceforge.net ! * ! * @author David M. Doolin ! * ! * $Id$ ! * ! */ #ifndef NMEA_PARSE_H Index: mssparse.c =================================================================== RCS file: /cvsroot/firebug/fireboard/sensors/leadtek9546/mssparse.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mssparse.c 30 Aug 2004 17:02:58 -0000 1.1 --- mssparse.c 31 Aug 2004 13:31:10 -0000 1.2 *************** *** 1,3 **** --- 1,15 ---- + /** + * + * This code is part of the NSF-ITR funded + * FireBug project: + * @url http://firebug.sourceforge.net + * + * @author David M. Doolin + * + * $Id$ + * + */ + #include <stdio.h> #include <stdlib.h> Index: nmea_parse.c =================================================================== RCS file: /cvsroot/firebug/fireboard/sensors/leadtek9546/nmea_parse.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** nmea_parse.c 30 Aug 2004 21:37:48 -0000 1.2 --- nmea_parse.c 31 Aug 2004 13:31:10 -0000 1.3 *************** *** 1,3 **** ! #include <stdio.h> --- 1,13 ---- ! /** ! * ! * This code is part of the NSF-ITR funded ! * FireBug project: ! * @url http://firebug.sourceforge.net ! * ! * @author David M. Doolin ! * ! * $Id$ ! * ! */ #include <stdio.h> Index: leadtek_9546.c =================================================================== RCS file: /cvsroot/firebug/fireboard/sensors/leadtek9546/leadtek_9546.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** leadtek_9546.c 30 Aug 2004 17:01:23 -0000 1.4 --- leadtek_9546.c 31 Aug 2004 13:31:10 -0000 1.5 *************** *** 1,3 **** ! #include <stdio.h> --- 1,12 ---- ! /** ! * This code is part of the NSF-ITR funded ! * FireBug project: ! * @url http://firebug.sourceforge.net ! * ! * @author David M. Doolin ! * ! * $Id$ ! * ! */ #include <stdio.h> Index: gllparse.c =================================================================== RCS file: /cvsroot/firebug/fireboard/sensors/leadtek9546/gllparse.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gllparse.c 30 Aug 2004 17:02:58 -0000 1.1 --- gllparse.c 31 Aug 2004 13:31:10 -0000 1.2 *************** *** 1,3 **** --- 1,14 ---- + /** + * + * This code is part of the NSF-ITR funded + * FireBug project: + * @url http://firebug.sourceforge.net + * + * @author David M. Doolin + * + * $Id$ + + #include <stdio.h> #include <stdlib.h> Index: vtgparse.c =================================================================== RCS file: /cvsroot/firebug/fireboard/sensors/leadtek9546/vtgparse.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** vtgparse.c 30 Aug 2004 17:02:58 -0000 1.1 --- vtgparse.c 31 Aug 2004 13:31:10 -0000 1.2 *************** *** 1,3 **** ! #include <stdio.h> --- 1,13 ---- ! /** ! * This code is part of the NSF-ITR funded ! * FireBug project: ! * @url http://firebug.sourceforge.net ! * ! * @author David M. Doolin ! * ! * $Id$ ! * ! * ! */ #include <stdio.h> Index: nmea_parse_private.h =================================================================== RCS file: /cvsroot/firebug/fireboard/sensors/leadtek9546/nmea_parse_private.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** nmea_parse_private.h 30 Aug 2004 21:38:25 -0000 1.1 --- nmea_parse_private.h 31 Aug 2004 13:31:10 -0000 1.2 *************** *** 1,3 **** ! #ifndef NMEA_PARSE_PRIVATE_H --- 1,13 ---- ! /** ! * ! * This code is part of the NSF-ITR funded ! * FireBug project: ! * @url http://firebug.sourceforge.net ! * ! * @author David M. Doolin ! * ! * $Id$ ! * ! */ #ifndef NMEA_PARSE_PRIVATE_H |