I just tried to use pointer to get the address of the first of an array and read the elements one by one. I used the pointer to not accompy a big part of the memory. Here is the variables:
unsigned char *RawAudio;
extern const unsigned char bootup[];
And here I got the warning:
*RawAudio = bootup;
And here is the warning I got:
Why? How to figure it out?