/** * \file * * * \brief Messages for LCD. * * * \author Bernie Innocenti * \author Stefano Fedrigo */ #include "messages.h" /** * Array of pointers to localized strings. Should be filled * by localization stuff, but not for now. */ const char *msg_strings[MSG_COUNT] = { 0, // TODO: add your strings here }; /* Buffer for catalog file */ /* char msg_buf[MSG_BUFSIZE]; */ /* The following does not work (move string tables into the DMSG/CMSG segments) * #pragma memory=dataseg(DMSG) * #pragma memory=constseg(CMSG) */ /** * Untranslated constant strings used more than once are * grouped here to save ROM space. */ const char str_empty[] = "";