The UART should only accept printable characters between the range 0x20 and 0x7E for now.
Actually we should also allow 0x08 (backspace), 0x10 (newline) control characters. Everything else can be ignored, including 0x0D (carriage return) which would resolve #9 as well.
The UART should only accept printable characters between the range
0x20
and0x7E
for now.Actually we should also allow
0x08
(backspace),0x10
(newline) control characters. Everything else can be ignored, including0x0D
(carriage return) which would resolve #9 as well.