Hi
I downloaded the latest release, 7.3.0, and while trying to work with the LPC1114 example for the LPCXpresso toolchain, my little application hanged at the SVC_Handler handler interrupt.
After digging into the source code I found that changing this line
#define vPortSVCHandler SVCall_Handler
for this other one
#define vPortSVCHandler SVC_Handler
(FreeRTOSConfig.h, line 143)
make my application to run nicely and smoothly.
Is that a bug?
Greetings!!