Hello everybody, can someone help me with real-time programming for PSOC 5lp ?
This might be a starting point -
http://www.cypress.com/?id=4&rID=57144
http://www.freertos.org/FreeRTOS-port-and-demo-for-Cypress-PSoC5-CY8C5588-Cortex-M3.html
Regards, Dana.
Better to be a bit more specific:
Are you wanting to
Use an RTOS? Have a google look at FreeRTOS
Build an RTOS yourself? Difficult, but doable. See above for examples
Writing programs that resond in real-time to events? Use interrupt-driven systems
Bob
Thanks to both of you.
You can also do a state machine implementation. There are a few specific ones in the cypress app notes or you can use something like the QP framework (http://www.state-machine.com/). It was fairly easy to get that one runing, though actually using it has a bit of a steep and long learning curve (at least for me)