Closed chinglee-iot closed 1 year ago
Attention: 1 lines
in your changes are missing coverage. Please review.
Comparison is base (
92a4d17
) 93.62% compared to head (9989e0b
) 93.60%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
This pull request in FreeRTOS-Community-Supported-Demos fixes the FreeRTOS-Kernel-Demos / GNU ARM Toolchain failure. It will be merged after this kernel PR is merged.
Kudos, SonarCloud Quality Gate passed!
0 Bugs
0 Vulnerabilities
0 Security Hotspots
2 Code Smells
No Coverage information
0.0% Duplication
Add static idle task memory support for SMP
Description
In the FreeRTOS SMP, configNUMBER_OF_CORES - 1 idle tasks which do the minimal job are also created to ensure that each core has an idle task to run when no other task is available to run. The prototype of
vApplicationGetIdleTaskMemory()
is changed in SMP to specify the idle task memory.Set xCoreID to 0 to specify the idle task memory for the active idle task. Set xCoreID to 1 ~ ( configNUMBER_OF_CORES - 1 ) to specify the idle task memory for a passive idle task which does the minimal job.
codecov/project : fixed in https://github.com/FreeRTOS/FreeRTOS/pull/1096 FreeRTOS-Kernel Demos / GNU ARM Toolchain (pull_request) : fixed in https://github.com/FreeRTOS/FreeRTOS-Community-Supported-Demos/pull/13
Test Steps
Checklist:
Related Issue
Address #750 comment in line 469
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.