• How to debug a pointer to an array?
    Using the watch or memory debug windows, does anyone know of a way to view a pointer as if it were an array? i.e. uint8_t myArray[4]; uint8_t* myPtr = myArray; Normally, you'll only be able...
  • pointer of pointer type??
    what is different form, follow as: (1)code XBYTE *AA[]={...}; (2)code void (*BB[])(void)={...};
  • Can pointer types be cast?
    Here is my problem, i have several simmilar structue definitions (containers for messages) struct FIRST{ unsigned char Word_Pos[8] unsigned char Data[8] unsigned char Msg_Len }; struct FIRST...
  • can keil support SunMicrosystems
    can keil support SunMicrosystems
  • struct and pointer
    hi, i need a solution on how to read a struct which includes serveral types of vars with a pointer of type char. example: struct test { char a; int b; int c; char d; }; struct test s_test;...