FRDM-K64F Context switching MSP & PSP

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

FRDM-K64F Context switching MSP & PSP

ソリューションへジャンプ
2,787件の閲覧回数
luisgarabo
Contributor II

Hi,

Do you have an example of FRDM-K64F Context switching MSP & PSP?

Thanks for your help,

ラベル(1)
0 件の賞賛
返信
1 解決策
1,968件の閲覧回数
CCandido
Contributor V
0 件の賞賛
返信
4 返答(返信)
1,968件の閲覧回数
miduo
NXP Employee
NXP Employee

Hi,

Please make reference the MQX RTCS code, where in boot.s, the active stack pointer is set to PSP (set bit 1 of the CONTROL register). Then no need  do any manipulation of this bit. Cortex m4 itself automatically switches the active stack pointer to MSP in handler mode and switches back to PSP with exception return.

Here is the stack pointer switch code at <boot.s>

   /* Prepare process stack pointer */
   mrs r0, MSP
   msr PSP, r0

 

   /* Switch to proccess stack (PSP) */
   mrs r0, CONTROL
   orr r0, r0, #2
   msr CONTROL, r0
   isb #15
1,969件の閲覧回数
CCandido
Contributor V

Hi Luis,

I tested it code not run, you can test.

stm32f4 - scheduler and stack - Electrical Engineering Stack Exchange 

thanks,

Carlos.

0 件の賞賛
返信
1,968件の閲覧回数
luisgarabo
Contributor II

Thank you Carlos, Fang and Mark,

Your suggestions helped a lot. I implemented the code suggested by Carlos and I found that the priority for the PendSV call is set differently for the K64. I used the following:

NVIC_SetPriority(PendSV_IRQn, 0xF); //   Set PendSV to lowest possible priority

It works great!

Thanks!

Luis

0 件の賞賛
返信
1,968件の閲覧回数
mjbcswitzerland
Specialist V

Hi

You can study the FreeRTOS file /source/portable/GCC/ARM_MC4F/port.c to get some examples of such context switching.

Regards

Mark


uTasker developer and supporter (+5'000 hours experience on +60 Kinetis derivatives in +80 product developments)
Kinetis: http://www.utasker.com/kinetis.html