Skip to content

Commit c7774f1

Browse files
committed
Cleanup
1 parent 41698af commit c7774f1

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ PROJECT_NUMBER =
3737
# for a project that appears at the top of each page and should give viewer
3838
# a quick idea about the purpose of the project. Keep the description short.
3939

40-
PROJECT_BRIEF = "Portable Collaborative Multi-Tasking Scheduler for Arduino"
40+
PROJECT_BRIEF = "Cooperative Multi-Tasking Scheduler for Arduino"
4141

4242
# With the PROJECT_LOGO tag one can specify an logo or icon that is
4343
# included in the documentation. The maximum height of the logo should not

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This library implements an extended sub-set of the Arduino Scheduler
44
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
66
yield() or delay(). The Arduino yield() function is replaced by an
77
implementation in the library that allows context switching.
88

@@ -30,8 +30,6 @@ A short hand version of start() is available when the taskSetup is NULL.
3030
The Scheduler is a single-ton and the library creates the single
3131
instance.
3232

33-
![screenshot](https://dl.dropboxusercontent.com/u/993383/Cosa/screenshots/Screenshot%20from%202016-01-29%2015%3A24%3A17.png)
34-
3533
This library also includes support for task synchronization and
3634
communication; Semaphores, Queues and Channels. There is also
3735
built-in support for checking the amount of stack head room,

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
name=Portable Scheduler
1+
name=Scheduler
22
version=1.2.7
33
author=Mikael Patel
44
maintainer=Mikael Patel <[email protected]>
5-
sentence="Portable Collaborative Multi-Tasking Scheduler for Arduino"
5+
sentence="Cooperative Multi-Tasking Scheduler for Arduino"
66
paragraph=This library is a portable implementation of the Arduino Scheduler interface. The function yield() will context switch between multiple loop() functions.
77
category=Other
88
url=https://github.com/mikaelpatel/Arduino-Scheduler

0 commit comments

Comments
 (0)