]> git.mxchange.org Git - simgear.git/blobdiff - simgear/io/sg_serial.cxx
Tweaks in preparation for the 0.3.6-pre1 release.
[simgear.git] / simgear / io / sg_serial.cxx
index f59a98241c16e1cc326c81132d51261ce48bfb88..fcffdf68ae1f45232a1604830349c9865e3c39a0 100644 (file)
@@ -30,7 +30,7 @@
 
 #include "sg_serial.hxx"
 
-FG_USING_STD(string);
+SG_USING_STD(string);
 
 
 SGSerial::SGSerial( const string& device_name, const string& baud_rate ) :
@@ -47,16 +47,18 @@ SGSerial::~SGSerial() {
 
 
 // open the serial port based on specified direction
-bool SGSerial::open( SGProtocolDir dir ) {
+bool SGSerial::open( const SGProtocolDir d ) {
+    set_dir( d );
+
     if ( ! port.open_port( device ) ) {
-       FG_LOG( FG_IO, FG_ALERT, "Error opening device: " << device );
+       SG_LOG( SG_IO, SG_ALERT, "Error opening device: " << device );
        return false;
     }
 
     // cout << "fd = " << port.fd << endl;
 
     if ( ! port.set_baud( atoi( baud.c_str() ) ) ) {
-       FG_LOG( FG_IO, FG_ALERT, "Error setting baud: " << baud );
+       SG_LOG( SG_IO, SG_ALERT, "Error setting baud: " << baud );
        return false;
     }
 
@@ -114,7 +116,7 @@ int SGSerial::readline( char *buf, int length ) {
     // copy to external buffer
     strncpy( buf, save_buf, result );
     buf[result] = '\0';
-    FG_LOG( FG_IO, FG_INFO, "fg_serial line = " << buf );
+    SG_LOG( SG_IO, SG_INFO, "fg_serial line = " << buf );
 
     // shift save buffer
     for ( i = result; i < save_len; ++i ) {
@@ -127,11 +129,11 @@ int SGSerial::readline( char *buf, int length ) {
 
 
 // write data to port
-int SGSerial::write( char *buf, int length ) {
+int SGSerial::write( const char *buf, const int length ) {
     int result = port.write_port( buf, length );
 
     if ( result != length ) {
-       FG_LOG( FG_IO, FG_ALERT, "Error writing data: " << device );
+       SG_LOG( SG_IO, SG_WARN, "Error writing data: " << device );
     }
 
     return result;
@@ -139,7 +141,7 @@ int SGSerial::write( char *buf, int length ) {
 
 
 // write null terminated string to port
-int SGSerial::writestring( char *str ) {
+int SGSerial::writestring( const char *str ) {
     int length = strlen( str );
     return write( str, length );
 }