mirror of
https://github.com/hoglet67/AtomBusMon.git
synced 2025-01-02 23:32:02 +00:00
ICE-T65 - ignore control characters on serial input; version now 0.71
Change-Id: If18267cb8436637ab04ee792e4f454cac6ecb70e
This commit is contained in:
parent
55c8889881
commit
ffdd038a8b
BIN
AtomCpuMon.bit
BIN
AtomCpuMon.bit
Binary file not shown.
@ -10,7 +10,7 @@
|
|||||||
* VERSION and NAME are used in the start-up message
|
* VERSION and NAME are used in the start-up message
|
||||||
********************************************************/
|
********************************************************/
|
||||||
|
|
||||||
#define VERSION "0.70"
|
#define VERSION "0.71"
|
||||||
|
|
||||||
#if (CPU == Z80)
|
#if (CPU == Z80)
|
||||||
#define NAME "ICE-T80"
|
#define NAME "ICE-T80"
|
||||||
@ -427,8 +427,8 @@ void readCmd(char *cmd) {
|
|||||||
Serial_TxByte0(10);
|
Serial_TxByte0(10);
|
||||||
Serial_TxByte0(13);
|
Serial_TxByte0(13);
|
||||||
return;
|
return;
|
||||||
} else {
|
} else if (c >= 32) {
|
||||||
// Handle any other character
|
// Handle any other non-control character
|
||||||
Serial_TxByte0(c);
|
Serial_TxByte0(c);
|
||||||
cmd[i] = c;
|
cmd[i] = c;
|
||||||
i++;
|
i++;
|
||||||
|
Loading…
Reference in New Issue
Block a user