go4retro / tcpser

Hayes modem emulator application
106 stars 30 forks source link

Typo in modem_core.c #19

Closed cbmbas closed 1 year ago

cbmbas commented 1 year ago

mdm_responses[MDM_RESP_CONNECT_12000] = "CONNECT 12000";

This should be: mdm_responses[MDM_RESP_CONNECT_12000] = "CONNECT 1200";

I guess?!

go4retro commented 1 year ago

Actually, no. The full Hayes response set includes responses for 12000 and other weird bps rates, as shown here (http://www.messagestick.net/modem/Hayes_Ch1-2.html) and other places. While the code won't let you choose those bps rates in Linux/Windows, I put them in because I thought perhaps a microcontroller or similar might support those.

Jim