aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorAnatoli Arkhipenko <arkhipenko@hotmail.com>2015-10-29 23:39:52 -0400
committerAnatoli Arkhipenko <arkhipenko@hotmail.com>2015-11-03 13:59:13 -0500
commitef2329bdeade723f560cd0f7e933c9f3119677f3 (patch)
tree8ec69af2ba7e74d9577f9daccefce7325590b58e /README
parentccd1047d0286027ff98ee7f1dfdfa1f9d5e6e4e3 (diff)
TaskScheduler v1.8.2 Local Task Storage and bug fixesv1.8.2
* implemented Local Task Storage Pointer (allow use of same callback code for different tasks) * bug fix: currentTask() method returns incorrect Task reference if called within OnEnable and OnDisable methods * protection against infinite loop in OnEnable (if enable() methods are called within OnEnable) * new currentLts() method in the scheduler class returns current task's LTS pointer in one call
Diffstat (limited to 'README')
-rw-r--r--README10
1 files changed, 8 insertions, 2 deletions
diff --git a/README b/README
index be621bb..1a8139b 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
Task Scheduler – cooperative multitasking for Arduino microcontrollers
-Version 1.8.1: 2015-10-22
+Version 1.8.2: 2015-10-29
OVERVIEW:
@@ -11,7 +11,7 @@ A lightweight implementation of cooperative multitasking (task scheduling) suppo
5. Power saving via entering IDLE sleep mode between tasks are scheduled to run
6. Support for task invocation via Status Request object
7. Support for task IDs and Control Points for error handling and watchdog timer
-
+8. Support for Local Task Storage pointer (allowing use of same callback code for multiple tasks)
Changelog:
v1.0.0:
@@ -56,3 +56,9 @@ v1.8.0:
v1.8.1:
2015-10-22 - implement Task id and control points to support identification of failure points for watchdog timer logging
+v1.8.2:
+ 2015-10-27 - implement Local Task Storage Pointer (allow use of same callback code for different tasks)
+ 2015-10-27 - bug: currentTask() method returns incorrect Task reference if called within OnEnable and OnDisable methods
+ 2015-10-27 - protection against infinite loop in OnEnable (if enable() methods are called within OnEnable)
+ 2015-10-29 - new currentLts() method in the scheduler class returns current task's LTS pointer in one call
+