serial communication on freertos

springproject wrote on Thursday, May 21, 2009:

Hi,
  I am trying develop a project in which I have to write a code for interrupt based RS232 serial port communication using free rtos on ARM7.
Can anybody help me regarding how to go for it?

Thank You!!!

sotd wrote on Sunday, May 24, 2009:

yes. look at the demo and the document for your port. interrupt example and explanation are included. Note the example is to show api usage not to show optimal practice.

springproject wrote on Thursday, May 28, 2009:

Thanks a lot!
I have one query. While developing any application do we need use main.c provided in the demo or we can have our own. If we have to use already provided main.c are these functions required to be kept as it is :
prvSetupHardware();
vParTestInitialise();
vTaskStartScheduler();

or what changes we have to make in main.c?

Thanks.