You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,10 @@
2
2
3
3
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).
4
4
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.
6
6
7
7
## 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:
0 commit comments