mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 06:54:19 +00:00
Cli: ctrl+c reset buffer (#639)
This commit is contained in:
parent
eb49c29fa3
commit
129031e779
1 changed files with 3 additions and 0 deletions
|
@ -302,6 +302,9 @@ void cli_process_input(Cli* cli) {
|
|||
} else if(c == CliSymbolAsciiSOH) {
|
||||
cli_motd();
|
||||
cli_prompt(cli);
|
||||
} else if(c == CliSymbolAsciiETX) {
|
||||
cli_reset(cli);
|
||||
cli_prompt(cli);
|
||||
} else if(c == CliSymbolAsciiEOT) {
|
||||
cli_reset(cli);
|
||||
} else if(c == CliSymbolAsciiEsc) {
|
||||
|
|
Loading…
Reference in a new issue