Question
Initialized const pointer
How do I correct this code so that the pointer is a constant and not place into RAM?
```
const typeOfVariable Variable = DEFINED_VARIABLE_VALUE;
const typeOfVariable *pVariable = &Variable;
```
`pVariable` keeps ending up in RAM and I've run out of ideas :-(.
Thanks!
