Hello again all,
This is probably a really simple C code problem, but at this given moment in time I cannot firgure out where my mistake is.
Below is example code that demonstrates the issue.
const unsigned long a = 0x12345678;
const unsigned long b = (unsigned long)((unsigned long)(&a) + (unsigned long)(0x1000));
Why is the compiler throwing the following warning:
warning: pointer points outside of underlying object
Thanks,
Paul