LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   C++ serial port program problem (https://www.linuxquestions.org/questions/programming-9/c-serial-port-program-problem-236742/)

doar 09-29-2004 01:34 PM

C++ serial port program problem
 
I have borrowed a simple program that is supposed to read from a file and
output to the screen. Simply pass the file to it at the command line. I am
pointing it at a serial port, instead of a regular file and I get different results when I run it from the old C++ compiler instead
of the new. Any help is VERY VERY appreciated. I am not sure if I am
simply not using the new standard appropriately, or if my system is
configured incorrectly, or the compiler.

Here are the specifics:
System: Suse Linux 9.0 (i586) Kernel 2.4.21-243-smp4G
Old compiler: g++ using gcc version 2.95.3 20010315 (release)
New compiler: g++ using gcc version 3.3.3 (SuSE Linux)
to run command line: a.out /dev/ttyS0

What happens:
When I compile under the old compiler it works fine, I send info down the
port, it reads it and displays it on my screen.
When I compile under the new compiler, it simply blocks, no info is read,
the program never proceeds past the first get().

Here is the code:

#include <fstream>
#include <iostream>
using namespace std;

int main (int argc, char* argv[])
{
ifstream file;

for (int i=1; i<argc; ++i) {

file.open(argv[i]);

char c;
while (file.get(c)) {
cout.put(c);
}

file.clear();
file.close();
}
}

randyding 09-30-2004 12:22 AM

Can't say exactly what the diff is between the two compilers, though I'm not surprised it happens. You need to do more than just open the tty file and read from it, there is a lot of other things to configure. You'll need to understand your hardware, and if it uses flow control and what kind so you can set your rts and dtr as required, also baud rate, etc...
I've written a C serial library, what's the best way to get it to you. Its too large to post here. You can email me if you want it.

Hko 09-30-2004 05:56 AM

You may also want to read this document:
http://www.easysw.com/~mike/serial/

doar 10-01-2004 10:46 AM

Ok, thanks....
 
I must have just gotten lucky with the old compiler. I have done serial communications using C before, and was impressed with how easy it was to use C++, I was just fooling myself...;-) Thanks again.


All times are GMT -5. The time now is 08:56 PM.