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

RTX Timer Problem

Hi,

We are enabling the system main task at every 10ms interval.

but now we are facing the problem with enabling of the system task @10ms interval ..

could you please any one help us How we can verify the time set by Os_itv_set(1) and Os_itv_wait funciton

our main task is as shown below
void task1(void)
{

os_itv_set(1);

for(;;)
{ os_itv_wait();

}

}

0