mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
71eef9a9b0
Previously the RV port was routing IDF style critical section API to call FreeRTOS style critical section API. For example, a call to "portENTER_CRITICAL(mux)" would eventually call `vTaskEnterCritical()" via the following call flow: - portENTER_CRITICAL(mux) - vPortEnterCritical() - portSET_INTERRUPT_MASK_FROM_ISR() - vTaskEnterCritical() This commit fixes the IDF style critical section by making sure that they are completely orthogonal to FreeRTOS critical sections |
||
---|---|---|
.. | ||
freertos |