File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ PROJECT_NUMBER =
37
37
# for a project that appears at the top of each page and should give viewer
38
38
# a quick idea about the purpose of the project. Keep the description short.
39
39
40
- PROJECT_BRIEF = "Portable Collaborative Multi-Tasking Scheduler for Arduino"
40
+ PROJECT_BRIEF = "Cooperative Multi-Tasking Scheduler for Arduino"
41
41
42
42
# With the PROJECT_LOGO tag one can specify an logo or icon that is
43
43
# included in the documentation. The maximum height of the logo should not
Original file line number Diff line number Diff line change 2
2
3
3
This library implements an extended sub-set of the Arduino Scheduler
4
4
class. Multiple loop() functions, tasks, may be started and run in a
5
- collaborative multi-tasking style. The tasks are run until they call
5
+ cooperative multi-tasking style. The tasks are run until they call
6
6
yield() or delay(). The Arduino yield() function is replaced by an
7
7
implementation in the library that allows context switching.
8
8
@@ -30,8 +30,6 @@ A short hand version of start() is available when the taskSetup is NULL.
30
30
The Scheduler is a single-ton and the library creates the single
31
31
instance.
32
32
33
- ![ screenshot] ( https://dl.dropboxusercontent.com/u/993383/Cosa/screenshots/Screenshot%20from%202016-01-29%2015%3A24%3A17.png )
34
-
35
33
This library also includes support for task synchronization and
36
34
communication; Semaphores, Queues and Channels. There is also
37
35
built-in support for checking the amount of stack head room,
Original file line number Diff line number Diff line change 1
- name =Portable Scheduler
1
+ name =Scheduler
2
2
version =1.2.7
3
3
author =Mikael Patel
4
4
maintainer =Mikael Patel <
[email protected] >
5
- sentence =" Portable Collaborative Multi-Tasking Scheduler for Arduino"
5
+ sentence =" Cooperative Multi-Tasking Scheduler for Arduino"
6
6
paragraph =This library is a portable implementation of the Arduino Scheduler interface. The function yield() will context switch between multiple loop() functions.
7
7
category =Other
8
8
url =https://github.com/mikaelpatel/Arduino-Scheduler
You can’t perform that action at this time.
0 commit comments