• 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...
  • Task Suspend and resume
    Hi, I writing a new app based on the new Keil 5 CMSIS-RTOS Version 1.02, I wanted to be able to suspend and resume a task, several times in another task, I have used osThreadTerminate for suspending...
  • 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...
  • Some Questions about RTX51 tiny tasking switching.
    In general, what can causes the RTX51 Tiny tasking switching run uncorrectly. Thanks in advance. I can solve some qustions in my program, some tasks never run in program.
  • why is the task not switched in rtx51-tiny example?
    i compled the rtxtiny2\example\ex2,and successed. but when i dubug it,i find the task do not be switched. it is runing in the task2.and the task0 is ready and time out,but not be runed.. why...