summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorAnatoli Arkhipenko <arkhipenko@hotmail.com>2015-10-22 23:17:45 -0400
committerAnatoli Arkhipenko <arkhipenko@hotmail.com>2015-10-22 23:17:45 -0400
commitccd1047d0286027ff98ee7f1dfdfa1f9d5e6e4e3 (patch)
tree2481326454d89e1977923475fda443ba3a78922c /README
parentbb20df9c654cbed77bb5007814ae06f20f08ec36 (diff)
Support for taask IDs and Control Pointsv1.8.1
* Automatically and manually assigned task IDs * Manually assigned Control Points within task's callback function * Updated existing examples * New example sketches
Diffstat (limited to 'README')
-rw-r--r--README12
1 files changed, 8 insertions, 4 deletions
diff --git a/README b/README
index 2d395fa..be621bb 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
Task Scheduler – cooperative multitasking for Arduino microcontrollers
-Version 1.8.0: 2015-10-15
+Version 1.8.1: 2015-10-22
OVERVIEW:
@@ -10,6 +10,7 @@ A lightweight implementation of cooperative multitasking (task scheduling) suppo
4. Dynamic change of task execution parameters (frequency, number of iterations, callback function)
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
Changelog:
@@ -49,6 +50,9 @@ v1.7.0:
2015-10-12 - new Task method: forceNextIteration() - makes next iteration happen immediately during the next pass regardless how much time is left
v1.8.0:
- 2015-10-13 - support for status request objects allowing tasks waiting on requests
- 2015-10-13 - moved to a single header file to allow compilation control via #defines from the main sketch
- \ No newline at end of file
+ 2015-10-13 - support for status request objects allowing tasks waiting on requests
+ 2015-10-13 - moved to a single header file to allow compilation control via #defines from the main sketch
+
+v1.8.1:
+ 2015-10-22 - implement Task id and control points to support identification of failure points for watchdog timer logging
+