• 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 RTOS and CAN
    RTX51-Tiny RTOS and CAN I can't afford RTX51-Full to get the Keil CAN function library, but I have C51 and RTX51-Tiny. Where can I get some CAN functions for this? Anyone got experience with RTX51 Tiny...
  • 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...
  • To check flow of RTOS Tiny execution.
    Hi All On test board:Leds(2 nos) --> P1.1,P1.2 Buzzer --> P1.3 In Task0:Task1 and Task2 are created. In Task1: led1 = On,led2 = off --> delay() --> led1 = Off,led2=On. In Task2: buzzer = On...
  • A problem about rtx-tiny
    When I debug the following program, received an errno: ***errno34: undefined identifier #include <rtx51tny.h> #include <reg52.h> #define INIT 0 #define ONE 1 #define TWO 2 int counter1; int counter2;...