1
0
mirror of https://github.com/taigrr/arduinolibs synced 2025-01-18 04:33:12 -08:00

Don't use CTRL-Z for "exit", only CTRL-D

This commit is contained in:
Rhys Weatherley 2016-03-09 19:41:09 +10:00
parent 031f0ae50a
commit e9e48c0703

View File

@ -209,8 +209,8 @@ void Shell::loop()
clearCharacters(curLen); clearCharacters(curLen);
break; break;
case 0x04: case 0x1A: case 0x04:
// CTRL-D or CTRL-Z - equivalent to the "exit" command. // CTRL-D - equivalent to the "exit" command.
executeBuiltin(builtin_cmd_exit); executeBuiltin(builtin_cmd_exit);
break; break;