#ifndef __BORLANDC__
#include <msp430x14x.h>
#endif

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "basic.h"
#include "config.h"
#include "util.h"
#include "errnum.h"

//
// The following strings should linked to ROM (flash) addresses to 
// save precious RAM. NOTE that the strings have to be instantiated as a
// character array on a character-by-character basis with a terminating null
// character at the end or else the compiler wants to put them all in RAM
// because it has to do runtime initialization on strings (ostensibly to
// add the null character at the end -- argh!!)
//

#ifdef CONFIG_INCLUDE_CORECMDS

const char cmdSet[] = {'s','e','t','\0'};
const char cmdGet[] = {'g','e','t','\0'};
const char cmdClear[] = {'c','l','e','a','r','\0'};
const char cmdPoll[] = {'p','o','l','l','\0'};
const char cmdShow[] = {'s','h','o','w','\0'};

#endif
