Changeset 10062 in ntrip for trunk/BNC/src/bncserialport.cpp


Ignore:
Timestamp:
May 17, 2023, 1:14:47 PM (11 months ago)
Author:
stuerze
Message:

docu updated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncserialport.cpp

    r8252 r10062  
    3535 * Created:    18-Feb-2009
    3636 *
    37  * Changes:   
     37 * Changes:
    3838 *
    3939 * -----------------------------------------------------------------------*/
     
    9999  // WhatsThis, Add Stream from Serial Port
    100100  // --------------------------------------
    101   _serialMountpointLineEdit->setWhatsThis(tr("<p>BNC allows to retrieve streams via serial port without using the Ntrip transport protocol.</p><p>Specify a mountpoint. Recommended is a 4-character station ID.<br>Example: FFMJ</p>"));
     101  _serialMountpointLineEdit->setWhatsThis(tr("<p>BNC allows to retrieve streams via serial port without using the Ntrip transport protocol.</p><p>Specify a mountpoint. Recommended is a 9-character station ID.<br>Example: FFMJ01DEU</p>"));
    102102  _serialFormatLineEdit->setWhatsThis(tr("<p>Specify the stream format.</p><p>Available options are 'RTCM_2', 'RTCM_3', 'RTNET', and 'ZERO'.</p>"));
    103103  _serialLatLineEdit->setWhatsThis(tr("<p>Enter the approximate latitude of the stream providing receiver in degrees.<p></p>Example: 45.32</p>"));
     
    138138  _buttonWhatsThis = new QPushButton(tr("Help=Shift+F1"), this);
    139139  connect(_buttonWhatsThis, SIGNAL(clicked()), this, SLOT(slotWhatsThis()));
    140  
     140
    141141  _buttonCancel = new QPushButton(tr("Cancel"), this);
    142142  connect(_buttonCancel, SIGNAL(clicked()), this, SLOT(reject()));
     
    171171  QStringList* mountPoints = new QStringList;
    172172
    173   QString _serialBaudRate    = _serialBaudRateComboBox->currentText(); 
    174   QString _serialFlowControl = _serialFlowControlComboBox->currentText(); 
    175   QString _serialDataBits    = _serialDataBitsComboBox->currentText(); 
    176   QString _serialParity      = _serialParityComboBox->currentText(); 
    177   QString _serialStopBits    = _serialStopBitsComboBox->currentText(); 
     173  QString _serialBaudRate    = _serialBaudRateComboBox->currentText();
     174  QString _serialFlowControl = _serialFlowControlComboBox->currentText();
     175  QString _serialDataBits    = _serialDataBitsComboBox->currentText();
     176  QString _serialParity      = _serialParityComboBox->currentText();
     177  QString _serialStopBits    = _serialStopBitsComboBox->currentText();
    178178
    179179  if ( !_serialMountpointLineEdit->text().isEmpty() &&
     
    183183       !_serialLatLineEdit->text().isEmpty() &&
    184184       !_serialLonLineEdit->text().isEmpty() ) {
    185     mountPoints->push_back("//" 
     185    mountPoints->push_back("//"
    186186      + _serialPortLineEdit->text().replace("/","-").replace(QRegExp("^[-]"), "") + "-"
    187187      + _serialDataBits + "-"
Note: See TracChangeset for help on using the changeset viewer.