[tuxdroid-svn] r209 - firmware/tuxup/trunk
Status: Beta
Brought to you by:
ks156
From: <c2m...@c2...> - 2007-03-26 09:33:01
|
Author: jaguarondi Date: 2007-03-26 08:07:36 +0200 (lun, 26 mar 2007) New Revision: 209 Modified: firmware/tuxup/trunk/CHANGES firmware/tuxup/trunk/TODO firmware/tuxup/trunk/version.h Log: Preparing for release 0.1.0 of tuxup. Modififirmware/tuxup/trunk/CHANGES =================================================================== --- firmware/tuxup/trunk/CHANGES 2007-03-26 06:06:47 UTC (rev 208) +++ firmware/tuxup/trunk/CHANGES 2007-03-26 06:07:36 UTC (rev 209) @@ -7,7 +7,17 @@ ---------------------------------------------------------------------- Current: - * Uses interrupt usb requests and not bulk anymore, this is not compatible with the old firmware so to update it, you have to press the belly button when plugging. +0.1.0: + + * BUG: fixed bug #1 Segfault when a hex file contained a line of data that + ended exactly at the end of a segment. The segmnt was never sent to the USB + in this case. + * Use CFLAGS in the Makefile, cleaned the code by removing unused variables + and avoid any warning. + * BUG: segfault when the given filename didn't have an extension. + * Uses interrupt usb requests and not bulk anymore, this is not compatible + with the old firmware so to update it, you have to press the belly button + when plugging. * Connection now checks for 5 seconds before claiming that tux is not found. * Added autodetection of the CPU to be programmed based on the CPU field in hex files or names of eep files. @@ -15,7 +25,8 @@ * Changed the usage, replaced the old argument parsing with getopt. * Added --version, --help, --pretend and --verbose options. * Added --main option to reprogram tuxcore and tuxaudio only. - * Added support for usb programming which is a simple front-end to dfu-programmer. dfu-programmer needs to be installed. + * Added support for usb programming which is a simple front-end to + dfu-programmer. dfu-programmer needs to be installed. * Now uses defines from commands.h for CPU numbers, I2C addresses, etc. * Code cleanup Modififirmware/tuxup/trunk/TODO =================================================================== --- firmware/tuxup/trunk/TODO 2007-03-26 06:06:47 UTC (rev 208) +++ firmware/tuxup/trunk/TODO 2007-03-26 06:07:36 UTC (rev 209) @@ -4,7 +4,7 @@ - Add man page -- Add install and uninstall options in the make file +- Add install and uninstall options in the make file or use autoconf - Display the usb firmware version programmed in the dongle and in the hex file like all other CPU's, need to change the firmware for that Modififirmware/tuxup/trunk/version.h =================================================================== --- firmware/tuxup/trunk/version.h 2007-03-26 06:06:47 UTC (rev 208) +++ firmware/tuxup/trunk/version.h 2007-03-26 06:07:36 UTC (rev 209) @@ -22,6 +22,6 @@ #ifndef version_h #define version_h -#define VERSION "0.0.1" +#define VERSION "0.1.0" #endif |