Changeset 1753 in ntrip


Ignore:
Timestamp:
Mar 9, 2009, 12:05:04 AM (15 years ago)
Author:
weber
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncgetthread.cpp

    r1744 r1753  
    5959#include "bncnetqueryrtp.h"
    6060#include "bncnetqueryudp.h"
     61#include "bncnetquerys.h"
    6162#include "bncsettings.h"
    6263#include "latencychecker.h"
     
    537538    }
    538539    else if (_ntripVersion == "S") {
    539       _query = new bncNetQueryV0();
     540      _query = new bncNetQueryS();
    540541    }
    541542    else if (_ntripVersion == "N") {
  • trunk/BNC/bncnetquerys.cpp

    r1752 r1753  
    112112  }
    113113  else if (hlp == "4800") {
    114   printf("4800\n");
    115114    _serialPort->setBaudRate(BAUD4800);
    116115  }
     
    135134  hlp = hlpL[hlpL.size()-4].toUpper();
    136135  if      (hlp == "NONE") {
    137   printf("NONE\n");
    138136    _serialPort->setParity(PAR_NONE);
    139137  }
     
    161159  }
    162160  else if (hlp == "8") {
    163   printf("8\n");
    164161    _serialPort->setDataBits(DATA_8);
    165162  }
     
    169166  hlp = hlpL[hlpL.size()-3];
    170167  if      (hlp == "1") {
    171   printf("1\n");
    172168    _serialPort->setStopBits(STOP_1);
    173169  }
     
    180176  hlp = hlpL[hlpL.size()-2].toUpper();
    181177  if (hlp == "XONXOFF") {
    182   printf("XONXOFF\n");
    183178    _serialPort->setFlowControl(FLOW_XONXOFF);
    184179  }
Note: See TracChangeset for help on using the changeset viewer.