Skip to content
Snippets Groups Projects
Commit e042d5d9 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Reset "hangup event" (dropped DTR indication) upon connection

Resolves issue with SBBS v2.30 not be able to answer an incoming "call".
parent a82559e3
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -258,6 +258,7 @@ char* connected(struct modem* modem) ...@@ -258,6 +258,7 @@ char* connected(struct modem* modem)
{ {
modem->online = true; modem->online = true;
modem->ringing = false; modem->ringing = false;
ResetEvent(hangup_event);
ResetEvent(hungup_event); ResetEvent(hungup_event);
SetEvent(carrier_event); SetEvent(carrier_event);
return connect_result(modem); return connect_result(modem);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment