• RTX51 tiny
    When a task is stoped due to time out? Will it sart again from the beganing or from the last statment that it was executing??
  • RTOS Tiny
    I am not able to run the foll. example of rtx tiny #include <rtx51tny.h> int counter0; int counter1; void main(void) void job0(void) _task_ 0 { os_create_task(1); while(1){ counter0...
  • 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...
  • rtx tiny
    #include <reg51.h> #include <rtx51tny.h> #include <stdio.h> unsigned char global; void First (void) _task_ 0 { os_create_task(1); os_create_task(2); os_delete_task(0); } void Second (void...
  • RTOS Tiny
    I am not able to run the foll. example of rtx tiny #include <rtx51tny.h> int counter0; int counter1; void main(void) void job0(void) _task_ 0 { os_create_task(1); while(1){ counter0...