Jelajahi Sumber

v1.9.2 - advancing version 1 up to avoid confusion with previous 1.9.1 which was pulled back

Anatoli Arkhipenko 10 tahun lalu
induk
melakukan
42d8d776e3
5 mengubah file dengan 5 tambahan dan 5 penghapusan
  1. 2 2
      README
  2. TEMPAT SAMPAH
      extras/TaskScheduler.doc
  3. 1 1
      extras/TaskScheduler.html
  4. 1 1
      library.properties
  5. 1 1
      src/TaskScheduler.h

+ 2 - 2
README

@@ -1,5 +1,5 @@
 Task Scheduler – cooperative multitasking for Arduino microcontrollers
-Version 1.9.1: 2015-12-17
+Version 1.9.2: 2015-12-20
   
 OVERVIEW:
  A lightweight implementation of cooperative multitasking (task scheduling) supporting:
@@ -15,7 +15,7 @@ OVERVIEW:
 Scheduling overhead: between 15 and 18 microseconds per scheduling pass (check the banchmark example).
 
 Changelog:
-v1.9.1:
+v1.9.2:
     2015-11-28 - _TASK_ROLLOVER_FIX is deprecated (not necessary)
     2015-12-16 - bug fixes: automatic millis rollover support for delay methods
     2015-12-17 - new method for _TASK_TIMECRITICAL option: getStartDelay() 

TEMPAT SAMPAH
extras/TaskScheduler.doc


+ 1 - 1
extras/TaskScheduler.html

@@ -28,7 +28,7 @@ Scheduler</B></FONT></P>
 <P CLASS="western" STYLE="margin-bottom: 0in"><B>cooperative
 multitasking for Arduino microcontrollers</B></P>
 <P CLASS="western" STYLE="margin-bottom: 0in; border-top: none; border-bottom: 1px solid #000000; border-left: none; border-right: none; padding-top: 0in; padding-bottom: 0.01in; padding-left: 0in; padding-right: 0in">
-<FONT SIZE=2 STYLE="font-size: 11pt"><B>Version 1.9.1: 2015-12-17</B></FONT></P>
+<FONT SIZE=2 STYLE="font-size: 11pt"><B>Version 1.9.2: 2015-12-20</B></FONT></P>
 <P CLASS="western" STYLE="margin-bottom: 0in"><BR>
 </P>
 <P CLASS="western" STYLE="margin-bottom: 0in"><B>OVERVIEW</B>:</P>

+ 1 - 1
library.properties

@@ -1,5 +1,5 @@
 name=TaskScheduler
-version=1.9.1
+version=1.9.2
 author=Anatoli Arkhipenko <arkhipenko@hotmail.com>
 maintainer=Anatoli Arkhipenko <arkhipenko@hotmail.com>
 sentence=A light-weight cooperative multitasking library for arduino microcontrollers.

+ 1 - 1
src/TaskScheduler.h

@@ -69,7 +69,7 @@
 // v1.9.0:
 //    2015-11-24 - packed three byte-long status variables into bit array structure data type - saving 2 bytes per each task instance
 //
-// v1.9.1:
+// v1.9.2:
 //    2015-11-28 - _TASK_ROLLOVER_FIX is deprecated (not necessary)
 //    2015-12-16 - bug fixes: automatic millis rollover support for delay methods
 //    2015-12-17 - new method for _TASK_TIMECRITICAL option: getStartDelay()