question for array
| Newsgroups | gmane.comp.hardware.rabbit-semiconductor |
|---|---|
| Message-ID | <[email protected]> |
I am using BL4S200. I define a constant array with structure element. like as followed:
//memory item attribution structure
typedef struct mem_attrib_struct{
unsigned int id;
unsigned int numreg;
unsigned int type;
unsigned int funid;
unsigned int paraidx;
unsigned int rw_flag;
unsigned int blk_idx;
unsigned int blk_state;
} MEMATTRIB;
MEMATTRIB memblk[]={{1,1,1,1,1,1,1,1},....};
each structure will have 16 byte, it seems when I have over 208 block, I can't comply correctly. anybody knows the maximum array size? how could I fix this issue?