Skip to content

Commit

Permalink
Added placeholder for "ECHAIN" command
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Lawrence committed Feb 28, 2013
1 parent 54709ca commit 05b31ff
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Arduino/TinyBasicPlus.ino
Expand Up @@ -251,6 +251,7 @@ static unsigned char keywords[] PROGMEM = {
'E','S','A','V','E'+0x80, 'E','S','A','V','E'+0x80,
'E','L','O','A','D'+0x80, 'E','L','O','A','D'+0x80,
'E','L','I','S','T'+0x80, 'E','L','I','S','T'+0x80,
'E','C','H','A','I','N'+0x80,
0 0
}; };


Expand All @@ -275,7 +276,7 @@ enum {
KW_RSEED, KW_RSEED,
KW_CHAIN, KW_CHAIN,
KW_TONEW, KW_TONE, KW_NOTONE, KW_TONEW, KW_TONE, KW_NOTONE,
KW_ENEW, KW_ESAVE, KW_ELOAD, KW_ELIST, KW_ENEW, KW_ESAVE, KW_ELOAD, KW_ELIST, KW_ECHAIN,
KW_DEFAULT /* always the final one*/ KW_DEFAULT /* always the final one*/
}; };


Expand Down Expand Up @@ -1168,6 +1169,7 @@ interperateAtTxtpos:
case KW_ESAVE: case KW_ESAVE:
case KW_ELOAD: case KW_ELOAD:
case KW_ELIST: case KW_ELIST:
case KW_ECHAIN:
#ifdef ENABLE_EEPROM #ifdef ENABLE_EEPROM
goto execnextline; goto execnextline;
#else #else
Expand Down

0 comments on commit 05b31ff

Please sign in to comment.