-
-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
43 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
From v5.2 to 6.0 | ||
================ | ||
|
||
.. highlight:: c++ | ||
|
||
**Esp32 task scheduling** | ||
|
||
Sming is a single-threaded framework, so does not impose any requirements on application code to be thread-safe. | ||
However, code could be executed from one of several tasks (wifi, tcpip or Sming) which is a reliability concern. | ||
|
||
With PR#2913 this has been fixed and all Sming code now runs in the same task context. | ||
This has largely be achieved by using a separate callback queue for Sming rather than using the IDF mechanism. |