mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
Fix spelling of priority in comments.
This commit is contained in:
parent
12fb75be37
commit
ba39a958b5
|
@ -175,7 +175,7 @@ void vPortStartFirstTask( void )
|
||||||
*/
|
*/
|
||||||
BaseType_t xPortStartScheduler( void )
|
BaseType_t xPortStartScheduler( void )
|
||||||
{
|
{
|
||||||
/* Make PendSV, CallSV and SysTick the same priroity as the kernel. */
|
/* Make PendSV, CallSV and SysTick the same priority as the kernel. */
|
||||||
*(portNVIC_SYSPRI2) |= portNVIC_PENDSV_PRI;
|
*(portNVIC_SYSPRI2) |= portNVIC_PENDSV_PRI;
|
||||||
*(portNVIC_SYSPRI2) |= portNVIC_SYSTICK_PRI;
|
*(portNVIC_SYSPRI2) |= portNVIC_SYSTICK_PRI;
|
||||||
|
|
||||||
|
|
|
@ -157,7 +157,7 @@ __asm void prvPortStartFirstTask( void )
|
||||||
*/
|
*/
|
||||||
BaseType_t xPortStartScheduler( void )
|
BaseType_t xPortStartScheduler( void )
|
||||||
{
|
{
|
||||||
/* Make PendSV, CallSV and SysTick the same priroity as the kernel. */
|
/* Make PendSV, CallSV and SysTick the same priority as the kernel. */
|
||||||
*(portNVIC_SYSPRI2) |= portNVIC_PENDSV_PRI;
|
*(portNVIC_SYSPRI2) |= portNVIC_PENDSV_PRI;
|
||||||
*(portNVIC_SYSPRI2) |= portNVIC_SYSTICK_PRI;
|
*(portNVIC_SYSPRI2) |= portNVIC_SYSTICK_PRI;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue