simgear/Serial/testserial.cxx

18 lines
273 B
C++
Raw Normal View History

1998-11-16 21:53:01 +08:00
#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;
}
}
}