mirror of
https://github.com/taigrr/arduinolibs
synced 2026-04-15 19:10:49 -07:00
Don't use CTRL-Z for "exit", only CTRL-D
This commit is contained in:
@@ -209,8 +209,8 @@ void Shell::loop()
|
||||
clearCharacters(curLen);
|
||||
break;
|
||||
|
||||
case 0x04: case 0x1A:
|
||||
// CTRL-D or CTRL-Z - equivalent to the "exit" command.
|
||||
case 0x04:
|
||||
// CTRL-D - equivalent to the "exit" command.
|
||||
executeBuiltin(builtin_cmd_exit);
|
||||
break;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user