• Accessing structure pointer members
    Hi all, For some reason, I cannot access the structure members if I use struct pointers. eg: typedef struct { int member1; }structure_t; structure_t structure, *structure_ptr; int...
  • 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...
  • 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...
  • typedef coloring on Uvision
    Hi, Is it possible to change the color of typedefs (only) when editing C files with Uvision V5? Thanks, John
  • Typedef __xxx struct? Defines?
    Hi guys, I have a piece of code that I copied from another source but I don't understand what it means and the Keil compiler doesn't either. The code looks like that: #if _MSC_VER >= 1000...