mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
docs(freertos/idf): Add IDF FreeRTOS upgarde migration notes for v5.2
This commit is contained in:
parent
912f6c527c
commit
95a5d3ff36
@ -6,6 +6,19 @@ System
|
||||
FreeRTOS
|
||||
--------
|
||||
|
||||
IDF FreeRTOS Upgrade
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
The IDF FreeRTOS kernel (which is a dual-core SMP implementation of FreeRTOS) has been upgraded to be based on Vanilla FreeRTOS v10.5.1. With this upgrade, the design and implementation of IDF FreeRTOS has also been changed significantly. As a result, users should take not of the following changes to kernel behavior and API:
|
||||
|
||||
- When enabling single-core mode via the :ref:`CONFIG_FREERTOS_UNICORE` option, the kernel's behavior will now be identical to Vanilla FreeRTOS (see :ref:`freertos-idf-single-core` for more details).
|
||||
- For SMP related APIs that were added by IDF FreeRTOS, checks on ``xCoreID`` arguments are now stricter. Providing out of range values for ``xCoreID`` arguments will now trigger an assert.
|
||||
- The following SMP related APIs are now deprecated and replaced due to naming consistency reasons:
|
||||
|
||||
- ``xTaskGetAffinity()`` is deprecated, call :cpp:func:`xTaskGetCoreID` instead.
|
||||
- ``xTaskGetIdleTaskHandleForCPU()`` is deprecated, call :cpp:func:`xTaskGetIdleTaskHandleForCore` instead.
|
||||
- ``xTaskGetCurrentTaskHandleForCPU()`` is deprecated, call :cpp:func:`xTaskGetCurrentTaskHandleForCore` instead.
|
||||
|
||||
Task Snapshot
|
||||
^^^^^^^^^^^^^
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user