From 42b9725ca94fbc149a088fb0f1cef83d16bccd81 Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 13 Jan 2014 20:30:24 +0100 Subject: Update Readme.txt --- Readme.txt | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'Readme.txt') diff --git a/Readme.txt b/Readme.txt index e6f19ab..b17b52d 100644 --- a/Readme.txt +++ b/Readme.txt @@ -11,8 +11,14 @@ Micronucleus is now widely installed on over 40,000 Digispark devices from Digis Changes ======= -This is release 1.10. Please use this at your own risk. The last official release for the DigiSpark is v1.06, which can be found here: https://github.com/micronucleus/micronucleus/tree/v1.06 - +This is release 1.11. Please use this at your own risk. The last official release for the DigiSpark is v1.06, which can be found here: https://github.com/micronucleus/micronucleus/tree/v1.06 + +Changes compared to v1.10: + • The size was reduced further to 1816 bytes, allowing 6380 bytes user space (320 bytes more than in v1.06). + • The bootloader will always start and never quit if no user program was loaded. This allows for much easier driver installation. Use the new "--erase-only" function of the command line tool to create a clean device. + • New entrymodes have been added. See firmware release notes and source code comments for details. + • All incoming data is now CRC checked to improve robustness. + Changes compared to v1.06: • Major size optimization and code reorganization. • The size was reduced to 1878 bytes, allowing 6314 bytes user space (256 bytes more than in v1.06). @@ -20,7 +26,7 @@ Changes compared to v1.06: See release notes (/firmware/releases/release notes.txt) for details. -@cpldcpu - Dec 15th, 2013 +@cpldcpu - Jan 14th, 2013 ---------------------------------------------------------------------------------- ================================================================================== @@ -31,6 +37,7 @@ See release notes (/firmware/releases/release notes.txt) for details. ---------------------------------------------------------------------------------- Special Thanks: + • Shay Green for numerous optimization ideas. • Objective Development's great V-USB bitbanging usb driver • Embedded Creations' pioneering and inspiring USBaspLoader-tiny85 • Digistump for motivation and contributing the VID/PID pair -- cgit v1.2.3 From 4cd1127b54c9fead4a86f76f62c758da41e2fd86 Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 14 Jan 2014 22:35:52 +0100 Subject: Update Readme.txt --- Readme.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Readme.txt') diff --git a/Readme.txt b/Readme.txt index b17b52d..ac3dff4 100644 --- a/Readme.txt +++ b/Readme.txt @@ -37,7 +37,8 @@ See release notes (/firmware/releases/release notes.txt) for details. ---------------------------------------------------------------------------------- Special Thanks: - • Shay Green for numerous optimization ideas. + • Shay Green/@glbargg for numerous optimization ideas. + • Aaron Stone/@sodabrew for building the OS X command line tool and various fixes. • Objective Development's great V-USB bitbanging usb driver • Embedded Creations' pioneering and inspiring USBaspLoader-tiny85 • Digistump for motivation and contributing the VID/PID pair -- cgit v1.2.3 From 7c2a1f561711a75abc0199d62cf8d6c5fb52bcef Mon Sep 17 00:00:00 2001 From: Tim Date: Wed, 15 Jan 2014 08:34:28 +0100 Subject: Make readme.txt a bit shorter --- Readme.txt | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'Readme.txt') diff --git a/Readme.txt b/Readme.txt index ac3dff4..6a9598a 100644 --- a/Readme.txt +++ b/Readme.txt @@ -28,16 +28,10 @@ See release notes (/firmware/releases/release notes.txt) for details. @cpldcpu - Jan 14th, 2013 ----------------------------------------------------------------------------------- -================================================================================== -!!%$!^%%$!#%$@#!%$@!$#@!%$#@%!#@%$!@$%#@!$%%!$#^&%$!%(*$!^%#!$@!#%$*^%!!&^%!%@$#!^ -@#$%^&*%#$%^#($)#*&($^#^*%&%%&@$*#($^&^*@$#&%^*%&($^&#^*%&$(^^%@$&^*#%@%&$^#*%^*%& -&$%#$&^&$%@&#$*^*##*$##^$&#^%$^&*$&^&^%$#^%$&*$&#^%$*^$#^&%$*%#^$&^*%$#^$*^$$&*%#$ -================================================================================== ---------------------------------------------------------------------------------- Special Thanks: - • Shay Green/@glbargg for numerous optimization ideas. + • Shay Green/@gblargg for numerous optimization ideas. • Aaron Stone/@sodabrew for building the OS X command line tool and various fixes. • Objective Development's great V-USB bitbanging usb driver • Embedded Creations' pioneering and inspiring USBaspLoader-tiny85 -- cgit v1.2.3 From 34b0f0f0b6ef651bb30878341cba2a28a107d82d Mon Sep 17 00:00:00 2001 From: Tim Date: Wed, 15 Jan 2014 08:35:54 +0100 Subject: readme.txt - formatting --- Readme.txt | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'Readme.txt') diff --git a/Readme.txt b/Readme.txt index 6a9598a..ac2d7db 100644 --- a/Readme.txt +++ b/Readme.txt @@ -14,14 +14,19 @@ Changes This is release 1.11. Please use this at your own risk. The last official release for the DigiSpark is v1.06, which can be found here: https://github.com/micronucleus/micronucleus/tree/v1.06 Changes compared to v1.10: - • The size was reduced further to 1816 bytes, allowing 6380 bytes user space (320 bytes more than in v1.06). - • The bootloader will always start and never quit if no user program was loaded. This allows for much easier driver installation. Use the new "--erase-only" function of the command line tool to create a clean device. - • New entrymodes have been added. See firmware release notes and source code comments for details. + • The size was reduced further to 1816 bytes, allowing 6380 bytes user space. + (320 bytes more than in v1.06) + • The bootloader will always start and never quit if no user program was loaded. + This allows for much easier driver installation. Use the new "--erase-only" + function of the command line tool to create a clean device. + • New entrymodes have been added. See firmware release notes and source code + comments for details. • All incoming data is now CRC checked to improve robustness. Changes compared to v1.06: • Major size optimization and code reorganization. - • The size was reduced to 1878 bytes, allowing 6314 bytes user space (256 bytes more than in v1.06). + • The size was reduced to 1878 bytes, allowing 6314 bytes user space + (256 bytes more than in v1.06). • The bootloader will disconnect from USB on exit. See release notes (/firmware/releases/release notes.txt) for details. -- cgit v1.2.3