• typedef struct error
    Hi I have code something like in hello.h #ifndef _HELLO_H #define _HELLO_H #define S16 signed short int #define S8 signed char typedef struct player { int x; int y; int score; }; extern...
  • typedef struct error
    Hi I have code something like in hello.h #ifndef _HELLO_H #define _HELLO_H #define S16 signed short int #define S8 signed char typedef struct player { int x; int y; int score; }; extern...
  • Using "typedef" to define array
    Hi, I'm using C Comipler V7.10, Vision2 V2.40 with AT89C51SND1C micro. For my program I want to have an array for Names. I know I can do it the following way: unsigned char Names[10][10]; //...
  • Using "typedef" to define array
    Hi, I'm using C Comipler V7.10, Vision2 V2.40 with AT89C51SND1C micro. For my program I want to have an array for Names. I know I can do it the following way: unsigned char Names[10][10]; //...
  • osPoolDef instead of _declare_box in a typedef struct
    Hello Everyone, I'm doing migration from RTX to CMSIS-RTOS following the apnt_264. In the RTX case I declared a box inside a typedef struct as in the following code: typedef struct mystruct_s...