• task switching
    Hi, Does os_send_token() cause task switching?If so, my code given below is not working properly,task_1 is running continuously, and task_2 is never getting executed. Please clarify my doubt. ...
  • Switching a task
    can somebody kindly give me a good explanation on usage of "os_tsk_pass()". i really dont know why i cant find a valid method to pass the execution to a task of lower priority. cant use os_evt_wait_or...
  • rxt51_tiny:why can not tasks switching?
    code as following,and run on c8051f020. unsigned char code cString1[]={"\nCommand: 1\0"}; unsigned char code cString2[]={"\nCommand: 2\0"}; unsigned char code cString3[]={"\nCommand: 3\0"}; unsigned...
  • Task switching monitor
    Hi, I wanted to try the "Task switching monitor" form the RT-Agent. Is it only available when I simulate the project? or can I use it with the Ulink2 debugger. The keil homepage does not give...
  • about RTX51 Tiny task switching
    My program as follow: unsigned char itask; void choice(void)_task_0 {init(); os_create_task(1); os_create_task(2); os_delete_task(0); } void task(void)_task_ 1 { itask = os_running_task_id...