Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Currently on my university we're doing communication between these old 56k modems. As messages from PC to modem go through the serial port, I thought to use System.IO.Ports.SerialPort .NET class.

I wrote pretty big C# application to communicate with modem, dial to other modem and communicate through them. It all worked fine till I managed to establish connection between two modems. When this happens, both modems (as it should be) switch from COMMAND mode (where I can send Hayes' commands to modem) to DATA mode (where all data I send to modem are being forwarded to the other modem).

My application can send things to, as well as receive things from serial port. It's installed on both connected PC's. But when I type something in my application, e.g. "Hello", it isn't received on the other side. And here comes the weird part. Here's how I'm sending messages through the serial port ('port' is an instance of SerialPort class, 'data' is an instance of a string):

port.Write(data);

So it works. It have to work. Especially, because if I use my application to send on the one side and PuTTy to receive on the other - it works! PuTTy connected to valid serial port receives my message. It also implicate, that not only my message comes to the first modem; it is being send by network to the other modem, and then the other modem sends it through the serial port to receiving PC. But that's not all. When I use my application to receive, I use SerialPort.DataReceived event, like this (of course method has been +=ed to event handler):

void port_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
    //this message box should pop up if event hit:
    MessageBox.Show("Data from serial port received!");
    //calling my method to handle incoming message
    DataReceived((SerialPort)sender); 
}

And it works, when modem (one connected to receiving PC) is in COMMAND mode. E.g. when I send "AT" Hayes' command to modem (which means nothing more than a 'ping'), modem responds "OK", and I receive it. SerialPort.DataReceived event fires. But when this modem is in DATA mode (when I can't send Hayes' commands to it), and it receives a message from sending modem, and forwards it to serial port - nothing. Event doesn't even fire. I checked it well.

It's weird!

This only brings me to conclusion, that the way, in which modem sends message to serial port, is slightly different when in DATA mode and in COMMAND mode, and PuTTy somehow does understand that other way, and the SerialPort class does not.

I really don't understand this.

share|improve this question
It's been a long time since I've done modem programming, but I don't recall any "slightly different" between command versus transparent modes. If anything, the "difference" would have to be in the EIA/RS-232 control lines. So perhaps you need to attach a "breakout box" that has LED indicators for the state of each handshake line. BTW you don't mention anything about dialing and answering modes of the modems. I've always used "auto-answer" on the remote end, i.e. the far modem is already in "data" mode and ready to send/receive with its serial port. – sawdust Oct 13 '12 at 3:16
I was taught that modem has two modes: COMMAND for Hayes' commands and DATA for data transmission. I am dialing and answering: I just send command ATDT<number> to modem to dial, and on the other side, when modem sends RING message, I send the ATA command. I'm not using auto-answer deliberately, but when I do, the problem still occurrs. And I rather thought about some program solution, than a "breakout box" with LEDs... that definitely overcomes my abilities (and time). – Sushi271 Oct 13 '12 at 17:08
You don't have to use a breakout box, but it is one simple method of quickly verifying proper HW flow control and modem handshake signals. Otherwise you better confirm that flow control (both HW & SW) & modem signals are properly configured on all modems and PC programs. "it receives a message from sending modem, and forwards it to serial port" - How do you know this? If actually true, then your program's "line disciple" needs checking. Is your program waiting for a line of text, but you only sent "Hello" w/o a CR and LF? BTW "data" mode is also called "on-line" or "transparent" mode. – sawdust Oct 13 '12 at 19:02
"it receives a message from sending modem, and forwards it to serial port" - I know this, because when it's like: myApp -> 1st modem ----> 2nd modem -> PuTTy, then PuTTy receives the message and shows it. And when it's like: myApp -> 1st modem ----> 2nd modem -> myApp, then there's nothing. And when I check with debugger, the SerialPort.DataReceived event - the only way to check if something arrived on serial port using SerialPort class - doesn't even fire. As if I wouldn't send anything. Besides, I checked CRLF also (trying to add it to every line I send), and there was no difference. – Sushi271 Oct 13 '12 at 21:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.