I have this as a static class member:
const char* CClock:: m_arrayKeyCodePrompts[NUM_KEY_CODES] = {"HIT UP", "HIT DOWN", "HIT LEFT", "HIT RIGHT", "ENTER/OK", "EXIT/BACK/RETURN", "HOME"};
It there any way of getting this into flash memory.
I have tried the F() macro and the PROGMEM but both cause compile errors.
The PROGMEM modifier sort of works - the compile error says that arrayKeyCodePrompts needs to be const.
The string elements are const but how do you make the array m_arrayKeyCodePrompts itself const?