[tuxdroid-svn] r681 - in firmware/tuxcore/tags: . 0.3.1
Status: Beta
Brought to you by:
ks156
From: jaguarondi <c2m...@c2...> - 2007-11-09 16:49:06
|
Author: jaguarondi Date: 2007-11-09 17:49:06 +0100 (Fri, 09 Nov 2007) New Revision: 681 Added: firmware/tuxcore/tags/0.3.1/ firmware/tuxcore/tags/0.3.1/CHANGES Removed: firmware/tuxcore/tags/0.3.1/CHANGES Modified: firmware/tuxcore/tags/0.3.1/debug.h firmware/tuxcore/tags/0.3.1/version.h Log: * Releasing tuxcore 0.3.1. See CHANGES for details. Copied: firmware/tuxcore/tags/0.3.1 (from rev 679, firmware/tuxcore/trunk) Property changes on: firmware/tuxcore/tags/0.3.1 ___________________________________________________________________ Name: svn:externals + common -r 679 http://svn.tuxisalive.com/firmware/tuxdefs Deleted: firmware/tuxcore/tags/0.3.1/CHANGES =================================================================== --- firmware/tuxcore/trunk/CHANGES 2007-11-09 16:24:15 UTC (rev 679) +++ firmware/tuxcore/tags/0.3.1/CHANGES 2007-11-09 16:49:06 UTC (rev 681) @@ -1,52 +0,0 @@ -$Id$ - -Approximate change log for TUXCORE by version. - -(For more detailed changes, see svn log.) - ----------------------------------------------------------------------- -Current: - -Version 0.3.1: - - * Added doxygen configuration file. - - * Light measurement is now correctly processed in the daemon to have a - somehow linear curve from the 2 different types of measurements (different - resisotr values). Thresholds for changing the resistor have been updated. - - * Major cleanup and commenting. Motor and led modules are considered clean. - - * Fixed #6 nd #9 about the leds that were not updated when the eyes were - closed. - - * Fixed #7 about the eyes commands. - - * Fixed #8 about the flipper movements. - - * Added the missing commands for the motors: CLOSE_EYES_CMD, RAISE_WINGS_CMD, - LOWER_WINGS_CMD, etc. - - * Added the basis for the sleep functions although they are unfinished and - untested. - - * BUG: when 2 events are happening at the same time, they are conflicting in - the event manager. - - * Added programming directives in the Makefile for tuxup, stk500 and jtagice - mkii. - - * Fixed #1 with the patches given by Philippe Teuwen, this now - fixes the location of the version, revision and author structures with a - linker script in the .version section otherwise gcc is free to change the - order. This also fixes the position of the cpu_nbr and ver_major bits in - the byte as again gcc is free to change that order though this is much less - likely to happen. - -Version 0.3.0: - - * Initial public release. This code is considered stable. Most - functionalities are implemented. Handling now all movements, IR emitter, IR - receiver, phototransistor, blue led's and I2C communication. There's also a - standalone behavior implemented but still not configurable from the - computer. Copied: firmware/tuxcore/tags/0.3.1/CHANGES (from rev 680, firmware/tuxcore/trunk/CHANGES) =================================================================== --- firmware/tuxcore/tags/0.3.1/CHANGES (rev 0) +++ firmware/tuxcore/tags/0.3.1/CHANGES 2007-11-09 16:49:06 UTC (rev 681) @@ -0,0 +1,61 @@ +$Id$ + +Approximate change log for TUXCORE by version. + +(For more detailed changes, see svn log.) + +---------------------------------------------------------------------- +Current: + +Version 0.3.1: + + * Added battery level measurement. The ADC module has been completely + refactored. + + * Reorganization of commands.h is on the way. + + * Versioning of the firmware now has a variation field nd a release_type to + mark final releases. + + * Added doxygen configuration file. The documentation can be founf online at + http://doc.tuxisalive.com. + + * Light measurement is now correctly processed in the daemon to have a + somehow linear curve from the 2 different types of measurements (different + resisotr values). Thresholds for changing the resistor have been updated. + + * Major cleanup and commenting. Motor and led modules are considered clean. + + * Fixed #6 nd #9 about the leds that were not updated when the eyes were + closed. + + * Fixed #7 about the eyes commands. + + * Fixed #8 about the flipper movements. + + * Added the missing commands for the motors: CLOSE_EYES_CMD, RAISE_WINGS_CMD, + LOWER_WINGS_CMD, etc. + + * Added the basis for the sleep functions although they are unfinished and + untested. + + * BUG: when 2 events are happening at the same time, they are conflicting in + the event manager. + + * Added programming directives in the Makefile for tuxup, stk500 and jtagice + mkii. + + * Fixed #1 with the patches given by Philippe Teuwen, this now + fixes the location of the version, revision and author structures with a + linker script in the .version section otherwise gcc is free to change the + order. This also fixes the position of the cpu_nbr and ver_major bits in + the byte as again gcc is free to change that order though this is much less + likely to happen. + +Version 0.3.0: + + * Initial public release. This code is considered stable. Most + functionalities are implemented. Handling now all movements, IR emitter, IR + receiver, phototransistor, blue led's and I2C communication. There's also a + standalone behavior implemented but still not configurable from the + computer. Modified: firmware/tuxcore/tags/0.3.1/debug.h =================================================================== --- firmware/tuxcore/trunk/debug.h 2007-11-09 16:24:15 UTC (rev 679) +++ firmware/tuxcore/tags/0.3.1/debug.h 2007-11-09 16:49:06 UTC (rev 681) @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id:$ */ +/* $Id$ */ /** * \defgroup debug Debugging aid Modified: firmware/tuxcore/tags/0.3.1/version.h =================================================================== --- firmware/tuxcore/trunk/version.h 2007-11-09 16:24:15 UTC (rev 679) +++ firmware/tuxcore/tags/0.3.1/version.h 2007-11-09 16:49:06 UTC (rev 681) @@ -34,7 +34,7 @@ /** RELEASE should be set to '1' prior to tagging a release, and reset * immediately after. It's like appending (SVN_UNRELEASED) to a version number * when equal to '0'. */ -#define RELEASE 0 +#define RELEASE 1 #define AUTHOR_ID 0 /* official release */ #define VARIATION 0 /* generic firmware */ |