Skip to content

Commit b0948e9

Browse files
committed
README
1 parent 3055928 commit b0948e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
Standard FreeRTOS uses C based API. However I prefer to have some nice C++ abstractions. That's when I disovered the [freertos-addons project from Michael Becker](https://github.com/michaelbecker/freertos-addons).
44

5-
I have converted it to an Arduino Library, so that it can be used e.g. on an ESP32. I also added a new Task class (which is a subclass of Thread) and allows to pass a function pointer in the constructor. For the ESP32 we support the xTaskCreatePinnedToCore() by passing the core in the Start method.
5+
I have converted it to an Arduino Library, so that it can be used e.g. on an ESP32. I also added a new Task class (which is a subclass of Thread) that allows to pass a function pointer in the constructor. For the ESP32 we support the xTaskCreatePinnedToCore() by passing the core in the Start method.
66

77
## Example
8-
Here is a simple example that creates a task and uses a queue to pass the information back to the Arduino task:
8+
Here is a simple example that creates a task from a lambda function and uses a queue to pass the information back to the Arduino task:
99

1010
```c++
1111
#include "freertos-all.h"

0 commit comments

Comments
 (0)