ICE-T65 - ignore control characters on serial input; version now 0.71

Change-Id: If18267cb8436637ab04ee792e4f454cac6ecb70e
This commit is contained in:
David Banks 2015-11-15 11:38:01 +00:00
parent 55c8889881
commit ffdd038a8b
2 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -10,7 +10,7 @@
* VERSION and NAME are used in the start-up message
********************************************************/
#define VERSION "0.70"
#define VERSION "0.71"
#if (CPU == Z80)
#define NAME "ICE-T80"
@ -427,8 +427,8 @@ void readCmd(char *cmd) {
Serial_TxByte0(10);
Serial_TxByte0(13);
return;
} else {
// Handle any other character
} else if (c >= 32) {
// Handle any other non-control character
Serial_TxByte0(c);
cmd[i] = c;
i++;