Content originally posted in LPCWare by Flo on Wed Apr 03 06:19:46 MST 2013
Hey there,
i found the problem. So for people having similar issues:
I didn't used the naked attribute for xPortPendSVHandler and the vPortSVCHandler.
I used:
void xPortPendSVHandler( void )
void vPortSVCHandler( void )
instead of:
void xPortPendSVHandler( void ) __attribute__ (( naked ));
void vPortSVCHandler( void ) __attribute__ (( naked ));
This caused a additional context switch.
Regards,
Flo