We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
for example i have got three constant array
code unsigned char a_0[]={0x54,0x25,0x11,0xff,0x21}; code unsigned char a_1[]={0x51,0x45,0x55,0x85}; code unsigned char a_2[]={0x24,0x47};
in program i want to use this costant similar this; send(a[0]); or i=2; send(a[i]);
how can i do this, all my constant have got different size
code unsigned char a[3][5]={{0x54,0x25,0x11,0xff,0x21}, {0x51,0x45,0x55,0x85}, {0x24,0x47}};
for example i can use send(a[2]); but this spend more memory location then which i need. i try to find a different way.