• Can a RTX task mail itself?
    Is it possible to for a task to send mail to itself? example: /* Wait for mail (actions) to arrive from other tasks */ WaitResult = os_mbx_wait(gsm_mailbox, (VOID**)&gsm_actionP, MS_TO_SYS_TICKS...
  • Run a code from RAM
    I have 32k code and xdata - 32KB size in my design. If i want to place a C function into RAM and execute from the RAM how should i do it?what are all the settings i need to do? whether can it be done...
  • typedef with a member "pointer to itself"
    Hello forum I've a c progamming question: I want to place a function pointer into a typedef with a function parameter "pointer to the typedef itself": typedef struct pExampleStructTypdef {...
  • Is 'unsigned' a datatype by itself?
    Hi, I have seen that some of the example programs availbale in this site define/declare variables as unsigned. For eg: unsigned voltage; //A-to-D example program What type would voltage in the...
  • Downloading and Running a Program from RAM
    I have an application that boots up from Flash, and then downloads an application into RAM. The RAM program is downloaded from the .h86 file and then executed by a far jump. Most all of the downloaded...