We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi all,
I am using RTX in LPC2148, I am using 3 tasks with different priority. I want to run the tasks periodically like task_1 run for every 10ms,task_2 runs for every 20ms and the third one for every 50ms. Is this possible to run a task concurrently means i want to how to configure it. I try the below method
__task void task_1(void) { os_itv_set(10); while(1) { os_itv_wait();
/* my code goes here*/ }
}
same procedure i followed for remaining tasks, but i am not get what i am expected. Is there is any other ways are available in RTX.
Thanks in advance
I want to Run two or more task at the same time i mean parallel functions
as far as I know the LPC2114 is not a multiprocessor chip