Merge pull request #4264 from Cacodemon345/patch-172

net_modem: process '&' escaped commands properly
This commit is contained in:
Miran Grča
2024-03-14 11:16:33 +01:00
committed by GitHub

View File

@@ -919,6 +919,7 @@ modem_do_command(modem_t* modem)
}
break;
}
break;
case '\\': { // \ escaped commands
char cmdchar = modem_fetch_character(&scanbuf);
switch (cmdchar) {