simgear/Serial/testserial.cxx
1998-11-16 13:53:01 +00:00

18 lines
273 B
C++

#include <string>
#include "serial.hxx"
main () {
fgSERIAL port( "/dev/ttyS1", 4800);
string value;
port.write_port("ATDT 626-9800\n");
while ( true ) {
value = port.read_port();
if ( value.length() ) {
cout << "-> " << value << endl;
}
}
}