diff options
| author | Anatoli Arkhipenko <arkhipenko@hotmail.com> | 2015-10-29 23:39:52 -0400 |
|---|---|---|
| committer | Anatoli Arkhipenko <arkhipenko@hotmail.com> | 2015-11-03 13:59:13 -0500 |
| commit | ef2329bdeade723f560cd0f7e933c9f3119677f3 (patch) | |
| tree | 8ec69af2ba7e74d9577f9daccefce7325590b58e /library.properties | |
| parent | ccd1047d0286027ff98ee7f1dfdfa1f9d5e6e4e3 (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 'library.properties')
| -rw-r--r-- | library.properties | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library.properties b/library.properties index 1eda34c..d347938 100644 --- a/library.properties +++ b/library.properties @@ -1,9 +1,9 @@ name=TaskScheduler -version=1.8.1 +version=1.8.2 author=Anatoli Arkhipenko <arkhipenko@hotmail.com> maintainer=Anatoli Arkhipenko <arkhipenko@hotmail.com> sentence=A light-weight cooperative multitasking library for arduino microcontrollers. -paragraph=Enables developers to achieve pseudo multi-tasking. The library is NOT pre-emptive, and as such requires cooperative programming to be used; does NOT use any of the timers therefore does not affect PWM pins. Includes support for status request objects, allowing tasks to wait on and signal event completion between each other. -category=Schedulers +paragraph=Supports: periodic task execution (with dynamic execution period in milliseconds – frequency of execution), number of iterations (limited or infinite number of iterations), execution of tasks in predefined sequence, dynamic change of task execution parameters (frequency, number of iterations, callback methods), power saving via entering IDLE sleep mode when tasks are not scheduled to run, support for event-driven task invocation via Status Request object, support for task IDs and Control Points for error handling and watchdog timer, support for Local Task Storage pointer (allowing use of same callback code for multiple tasks) +category=Timing url=https://github.com/arkhipenko/TaskScheduler.git architectures=* |
