FreeRTOS Support Archive
The FreeRTOS support forum is used to obtain active support directly from Real
Time Engineers Ltd. In return for using our top quality software and services for
free, we request you play fair and do your bit to help others too! Sign up
to receive notifications of new support topics then help where you can.
This is a read only archive of threads posted to the FreeRTOS support forum.
The archive is updated every week, so will not always contain the very latest posts.
Use these archive pages to search previous posts. Use the Live FreeRTOS Forum
link to reply to a post, or start a new support thread.
[FreeRTOS Home] [Live FreeRTOS Forum] [FAQ] [Archive Top] [April 2012 Threads] Priority initializationPosted by rafleury on April 24, 2012 Im using the Cortex M3 port of freeRTOS (specifically the lpc1763) and using Rowley Crossworks.
Ive been diving into the interrupt priorities of my application lately to be sure I understand everything is running as i intend. Following the code around for a while and I ran into the following lines:
portBASE_TYPE xPortStartScheduler( void ) { /* Make PendSV, CallSV and SysTick the same priroity as the kernel. */ *(portNVIC_SYSPRI2) |= portNVIC_PENDSV_PRI; *(portNVIC_SYSPRI2) |= portNVIC_SYSTICK_PRI; }
Two questions: 1) The register is defined as portNVIC_SYSPRI2, but the register its pointing to is the 3rd system priority handler, so the name is perhaps a bit misleading. Not really my main question though....just an observation.
2) In the comment it says the CallSV priority is set, but I dont see where that instruction happens, in fact.. in my program memory it is currently 0. Could this negatively affect my application? I saw a note on another post that CallSV is only used to start the scheduler, so maybe this is ok?
Thanks.
RE: Priority initializationPosted by Richard on April 25, 2012 SVCall is only called to kick the scheduler off, so never called when the scheduler is actually running, so its priority is not set.
Regards.
Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.
|