cli: Don't give character value 3 (CTRL-C) any special treatment. [#57] (#64)

This was originally here because of some misconfigured TTY settings,
and can cause problems when running on embedded devices.

Since the misconfigured TTY settings have been addressed, this check
is no longer needed.
This commit is contained in:
Robert Quattlebaum
2016-05-23 15:05:14 -07:00
committed by Jonathan Hui
parent ed9bf44081
commit f9cbea3433
-4
View File
@@ -102,10 +102,6 @@ void Serial::ReceiveTask(void)
break;
case 3: // CTRL-C
exit(1);
break;
case '\b':
case 127:
otPlatSerialSend(sEraseString, sizeof(sEraseString));