This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

FreeRTOS with NXP LPC2468 and Keil

Hello at all,

I want to use FreeRTOS with the NXP LPC2468. On the website http://www.freertos.org exists only an example with the LPC2129 and Keil
(look here "www.freertos.org/index.html://interactive.freertos.org/entries/156159-lpc23xx-port-with-keil-rv-compiler").

How can I use this example for the LPC2468? Exists there better examples?

How can I change the file "startup.s" and the port of FreeRTOS?

Parents
  • You do realize that your instructions make it impossible for application software to call any SWI functions except "vPortYieldProcessor", that is cause you map the vPortYieldProcessor to the SWI slow in the interrupt vector. Also, you can make the function that starts FreeRTOS a SWI function, simplifying the startup of the processor even further.

Reply
  • You do realize that your instructions make it impossible for application software to call any SWI functions except "vPortYieldProcessor", that is cause you map the vPortYieldProcessor to the SWI slow in the interrupt vector. Also, you can make the function that starts FreeRTOS a SWI function, simplifying the startup of the processor even further.

Children