I am trying to access the first element inside the array 'levels'.
unsigned char Level1[70] =
{
0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x02,0x00,0x01,0x01,0x01,0x01,0x01,0x03,0x07,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x03,0x03,0x02,0x02,0x01,
0x01,0x01,0x0b,0x01,0x01,0x01,0x01,0x02,0x02,0x01,0x08,0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x0f,0x02,0x02,0x02,0x02,0x02,
0x02,0x02,0x02,0x02,0x02,0x02
};
unsigned char (*levels)[1] = {&Level1};
I have tried things like:
unsigned char curr_level[70] = levels[0];
but they have not worked.
Thank you!
70is a meaningful number it should be a#defineconstant of some kind.