[tuxdroid-svn] r479 - firmware/tuxcore/trunk
Status: Beta
Brought to you by:
ks156
From: jaguarondi <c2m...@c2...> - 2007-09-05 09:45:42
|
Author: jaguarondi Date: 2007-09-05 11:45:34 +0200 (Wed, 05 Sep 2007) New Revision: 479 Modified: firmware/tuxcore/trunk/Doxyfile firmware/tuxcore/trunk/Makefile firmware/tuxcore/trunk/bootloader.c firmware/tuxcore/trunk/communication.c firmware/tuxcore/trunk/communication.h firmware/tuxcore/trunk/config.c firmware/tuxcore/trunk/config.h firmware/tuxcore/trunk/global.c firmware/tuxcore/trunk/global.h firmware/tuxcore/trunk/i2c.c firmware/tuxcore/trunk/i2c.h firmware/tuxcore/trunk/ir.c firmware/tuxcore/trunk/ir.h firmware/tuxcore/trunk/led.c firmware/tuxcore/trunk/led.h firmware/tuxcore/trunk/main.c firmware/tuxcore/trunk/motors.c firmware/tuxcore/trunk/motors.h firmware/tuxcore/trunk/parser.c firmware/tuxcore/trunk/parser.h firmware/tuxcore/trunk/sensors.c firmware/tuxcore/trunk/sensors.h firmware/tuxcore/trunk/standalone.c firmware/tuxcore/trunk/standalone.h firmware/tuxcore/trunk/svnrev.tmpl.h firmware/tuxcore/trunk/version.h Log: * Added license headers in Doxyfile and Makefile. * Corrected the subversion $Id:$ keyword in all files, the end $ was missing. Modified: firmware/tuxcore/trunk/Doxyfile =================================================================== --- firmware/tuxcore/trunk/Doxyfile 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/Doxyfile 2007-09-05 09:45:34 UTC (rev 479) @@ -1,5 +1,25 @@ -# Doxyfile 1.5.2 +# Doxyfile 1.5.2 - Doxygen configuration file for TUXCORE +# +# TUXCORE - Firmware for the 'core' CPU of tuxdroid +# Copyright (C) 2007 C2ME S.A. <tux...@c2...> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# $Id:$ + # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # Modified: firmware/tuxcore/trunk/Makefile =================================================================== --- firmware/tuxcore/trunk/Makefile 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/Makefile 2007-09-05 09:45:34 UTC (rev 479) @@ -1,5 +1,25 @@ -# Makefile for the 'core' CPU of Tux Droid +# Makefile - GNU Makefile for TUXCORE +# +# TUXCORE - Firmware for the 'core' CPU of tuxdroid +# Copyright (C) 2007 C2ME S.A. <tux...@c2...> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# $Id:$ + ## General Flags PROJECT = tuxcore MCU = atmega88 Modified: firmware/tuxcore/trunk/bootloader.c =================================================================== --- firmware/tuxcore/trunk/bootloader.c 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/bootloader.c 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #include <avr/io.h> #include <avr/boot.h> Modified: firmware/tuxcore/trunk/communication.c =================================================================== --- firmware/tuxcore/trunk/communication.c 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/communication.c 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #include <avr/io.h> #include <avr/interrupt.h> Modified: firmware/tuxcore/trunk/communication.h =================================================================== --- firmware/tuxcore/trunk/communication.h 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/communication.h 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #ifndef COMMUNICATION_H #define COMMUNICATION_H Modified: firmware/tuxcore/trunk/config.c =================================================================== --- firmware/tuxcore/trunk/config.c 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/config.c 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #include <avr/eeprom.h> #include "common/config.h" Modified: firmware/tuxcore/trunk/config.h =================================================================== --- firmware/tuxcore/trunk/config.h 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/config.h 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #ifndef CONFIG_H #define CONFIG_H Modified: firmware/tuxcore/trunk/global.c =================================================================== --- firmware/tuxcore/trunk/global.c 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/global.c 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #include <inttypes.h> #include <avr/io.h> Modified: firmware/tuxcore/trunk/global.h =================================================================== --- firmware/tuxcore/trunk/global.h 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/global.h 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #ifndef GLOBAL_H #define GLOBAL_H Modified: firmware/tuxcore/trunk/i2c.c =================================================================== --- firmware/tuxcore/trunk/i2c.c 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/i2c.c 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #include <avr/io.h> #include <avr/interrupt.h> Modified: firmware/tuxcore/trunk/i2c.h =================================================================== --- firmware/tuxcore/trunk/i2c.h 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/i2c.h 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #ifndef I2C_H #define I2C_H Modified: firmware/tuxcore/trunk/ir.c =================================================================== --- firmware/tuxcore/trunk/ir.c 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/ir.c 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #include <avr/interrupt.h> #include <avr/io.h> Modified: firmware/tuxcore/trunk/ir.h =================================================================== --- firmware/tuxcore/trunk/ir.h 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/ir.h 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #ifndef IR_H #define IR_H Modified: firmware/tuxcore/trunk/led.c =================================================================== --- firmware/tuxcore/trunk/led.c 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/led.c 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #include "global.h" #include "led.h" Modified: firmware/tuxcore/trunk/led.h =================================================================== --- firmware/tuxcore/trunk/led.h 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/led.h 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ /** \defgroup led Leds Modified: firmware/tuxcore/trunk/main.c =================================================================== --- firmware/tuxcore/trunk/main.c 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/main.c 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ /** \file main.c \brief Tuxcore main functions Modified: firmware/tuxcore/trunk/motors.c =================================================================== --- firmware/tuxcore/trunk/motors.c 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/motors.c 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #include <avr/interrupt.h> #include <avr/io.h> Modified: firmware/tuxcore/trunk/motors.h =================================================================== --- firmware/tuxcore/trunk/motors.h 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/motors.h 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ /** \defgroup movements Movements Modified: firmware/tuxcore/trunk/parser.c =================================================================== --- firmware/tuxcore/trunk/parser.c 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/parser.c 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #include <avr/io.h> #include <avr/interrupt.h> Modified: firmware/tuxcore/trunk/parser.h =================================================================== --- firmware/tuxcore/trunk/parser.h 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/parser.h 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #ifndef PARSER_H #define PARSER_H Modified: firmware/tuxcore/trunk/sensors.c =================================================================== --- firmware/tuxcore/trunk/sensors.c 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/sensors.c 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #include <avr/interrupt.h> #include <avr/io.h> Modified: firmware/tuxcore/trunk/sensors.h =================================================================== --- firmware/tuxcore/trunk/sensors.h 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/sensors.h 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #ifndef SENSORS_H #define SENSORS_H Modified: firmware/tuxcore/trunk/standalone.c =================================================================== --- firmware/tuxcore/trunk/standalone.c 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/standalone.c 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #include <avr/io.h> #include <avr/interrupt.h> Modified: firmware/tuxcore/trunk/standalone.h =================================================================== --- firmware/tuxcore/trunk/standalone.h 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/standalone.h 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #ifndef STANDALONE_H #define STANDALONE_H Modified: firmware/tuxcore/trunk/svnrev.tmpl.h =================================================================== --- firmware/tuxcore/trunk/svnrev.tmpl.h 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/svnrev.tmpl.h 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ /* This file is a template to generate svnrev.h automatically. * SubWCRev performs keyword susbstitution whith SVN information. Modified: firmware/tuxcore/trunk/version.h =================================================================== --- firmware/tuxcore/trunk/version.h 2007-09-05 09:17:54 UTC (rev 478) +++ firmware/tuxcore/trunk/version.h 2007-09-05 09:45:34 UTC (rev 479) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: */ +/* $Id$ */ #ifndef VERSION_H #define VERSION_H |