diff options
| author | Anatoli Arkhipenko <arkhipenko@hotmail.com> | 2015-12-20 21:56:31 -0500 |
|---|---|---|
| committer | Anatoli Arkhipenko <arkhipenko@hotmail.com> | 2015-12-20 21:56:31 -0500 |
| commit | 42d8d776e3fdb3c48700a3d88c8615dbf81da23f (patch) | |
| tree | e9b086c9aac9360453ec079ed2905286dbfb11ed | |
| parent | ff9be9377117960d03f44e493afb2e280f9b86ab (diff) | |
v1.9.2 - advancing version 1 up to avoid confusion with previous 1.9.1 which was pulled back
| -rw-r--r-- | README | 4 | ||||
| -rw-r--r-- | extras/TaskScheduler.doc | bin | 206848 -> 157696 bytes | |||
| -rw-r--r-- | extras/TaskScheduler.html | 2 | ||||
| -rw-r--r-- | library.properties | 2 | ||||
| -rw-r--r-- | src/TaskScheduler.h | 2 |
5 files changed, 5 insertions, 5 deletions
@@ -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() diff --git a/extras/TaskScheduler.doc b/extras/TaskScheduler.doc Binary files differindex 5c1ed8d..8562125 100644 --- a/extras/TaskScheduler.doc +++ b/extras/TaskScheduler.doc diff --git a/extras/TaskScheduler.html b/extras/TaskScheduler.html index d78f5f2..699c110 100644 --- a/extras/TaskScheduler.html +++ b/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> diff --git a/library.properties b/library.properties index 4765d62..834a433 100644 --- a/library.properties +++ b/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. diff --git a/src/TaskScheduler.h b/src/TaskScheduler.h index ab5ac11..a655ec7 100644 --- a/src/TaskScheduler.h +++ b/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() |
