• 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...
  • shared variable slots
    The feature of shared variables in C is a wonderful saver of DATA space. Can the same be implemented in assembler ? Erik
  • Shared data variable?
    Hi, I have a question about shared memory... I have a bootloader and a program running on a 8051 (different projects,burnt together on the chip at different locations) and I need them to share a...
  • 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;...
  • RTX Tiny and floatnig point
    Can multiple task use simultaneously floating point operations?