"James Henry Dodd" <[email protected]> writes: > I have a message table which I want in flash. When I declare it this > way... > > const char *Msgs[] = {
Try changing the above to
const char *const Msgs[] = { ...
Regards,
--Daniel
"James Henry Dodd" <[email protected]> writes: > I have a message table which I want in flash. When I declare it this > way... > > const char *Msgs[] = {
Try changing the above to
const char *const Msgs[] = { ...
Regards,
--Daniel