• 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...
  • how does RTX51 TINY resume a task?
    As I know, in order to resume a task, uC/OS-II copy the whole hardware stack to the external simulated stack. However, RTX51 tiny just preserve part content of hardware stack of a task,then ,how does...
  • Can finished one task with more than one time-slips in RTX51?
    Can the time-slip be less than time which task occupied ? I think that improve the system's real time respondency if the slip decreased.And take more slips to run the SLOW task,right?
  • RTX51 Tiny
    If a function called by one task is interrupted by Round-Robin or os_switch_task the auto variants in which fuction are saved or not? In the RTX51 Tiny User's Guide, you said: When a task switch occurs...
  • What's wrong with switch tasks in using the RTX51 Tiny ?
    I write a program using the RTX51 Tiny as follow: #include <reg52.h> #include <rtx51tny> #include <stdio.h> void init(void)_task_ 0 { init(); os_create_task(1); os_create_task(2); os_create_task...