• 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...
  • 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...
  • 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...
  • 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...
  • 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.