Hi,
I want to declare an array of constant values in my header file, and this array cannot be changed in the main code.
const uchar x[4] = {1, 2, 3, 4} does not work, cos the linker will complain that the address space overflow.
Is there any way to do this?
Thanks in advance!
YYE