X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fio%2Fsg_serial.hxx;h=85a92e1c1aac1f2ea3bb4685b5ce83c3c6a7315f;hb=5dfa4c0840b65377bba3224d24f2443d836e0782;hp=87c218771ce5d81fb24ff05da711410ed0e12fd9;hpb=c16b9ed25b9c8d7229153787aa1492e4ea37b61e;p=simgear.git diff --git a/simgear/io/sg_serial.hxx b/simgear/io/sg_serial.hxx index 87c21877..85a92e1c 100644 --- a/simgear/io/sg_serial.hxx +++ b/simgear/io/sg_serial.hxx @@ -1,8 +1,11 @@ -// sg_serial.hxx -- Serial I/O routines -// +/** + * \file sg_serial.hxx + * Serial I/O routines + */ + // Written by Curtis Olson, started November 1999. // -// Copyright (C) 1999 Curtis L. Olson - curt@flightgear.org +// Copyright (C) 1999 Curtis L. Olson - http://www.flightgear.org/~curt // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as @@ -16,7 +19,7 @@ // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software -// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // // $Id$ @@ -33,31 +36,41 @@ #include -// #ifdef SG_HAVE_STD_INCLUDES -// # include -// #else -// # include -// #endif - #include #include "iochannel.hxx" -SG_USING_STD(string); - +using std::string; +/** + * A serial I/O class based on SGIOChannel. + */ class SGSerial : public SGIOChannel { string device; string baud; - FGSerialPort port; + SGSerialPort port; char save_buf[ 2 * SG_IO_MAX_MSG_SIZE ]; int save_len; public: + /** + * Create an instance of SGSerial. + * This creates an instance of the SGSerial class. You need to + * provide the serial device name and desired baud rate. For Unix + * style systems, device names will be similar to + * ``/dev/ttyS0''. For DOS style systems you may want to use + * something similar to ``COM1:''. As with the SGFile class, + * device is not opened immediately, but instead will be opened + * when the open() method is called. + * @param device_name name of serial device + * @param baud_rate speed of communication + */ SGSerial( const string& device_name, const string& baud_rate ); + + /** Destructor */ ~SGSerial(); // open the serial port based on specified direction @@ -78,7 +91,10 @@ public: // close port bool close(); + /** @return the serial port device name */ inline string get_device() const { return device; } + + /** @return the baud rate */ inline string get_baud() const { return baud; } };