• RTX TINY LCD PROBLEM
    HI, I HAVE CREATED TWO TASK IN TASK1 I AM DOING RELAY ON OFF AND IN TASK2 I AM DISPLAING "HELLOW WORLD"ON LCD BUT ONLY TASK1 IS FUNCTIONING,LCD SOME TIME SHOWS GARBADGE AND SOMTIME ONLY CURSOR. my program...
  • Problems with MON51 + RTX Tiny
    Hallo all, I'm using Mon51 on my target CPU (80C517) and it works very well, but if my program uses RTX Tiny, sometimes the program hangs after executing some instructions (Single Step or by Setting...
  • EC++ and RTX tiny problem
    Hi All, Please help me on this problem and it is urgent. i have a EC++ class called ADC which i am trying to access from RTX tiny task. I am getting the following errors for ADC class file ADC.H...
  • RTX Tiny Problems ?
    I am writing a program in which 3 tasks run simultaneously. In the idle state all the tasks wait for signal (which originates in an ISR). The program invariably stops responding after a few minutes of...
  • 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...