Modem: Respond to % escaped commands, fixes Windows autodetection taking a long time
This commit is contained in:
@@ -1091,6 +1091,10 @@ modem_do_command(modem_t *modem, int repeat)
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case '%': // % escaped commands
|
||||||
|
// Windows 98 modem prober sends unknown command AT%V
|
||||||
|
modem_send_res(modem, ResERROR);
|
||||||
|
return;
|
||||||
case '\0':
|
case '\0':
|
||||||
modem_send_res(modem, ResOK);
|
modem_send_res(modem, ResOK);
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user