Skip to content

Commit

Permalink
net_modem: process '&' escaped commands properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Cacodemon345 authored Mar 14, 2024
1 parent 0c6c7d7 commit 6e87964
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/network/net_modem.c
Original file line number Diff line number Diff line change
Expand Up @@ -919,6 +919,7 @@ modem_do_command(modem_t* modem)
}
break;
}
break;
case '\\': { // \ escaped commands
char cmdchar = modem_fetch_character(&scanbuf);
switch (cmdchar) {
Expand Down

0 comments on commit 6e87964

Please sign in to comment.