C++ (Qt)inline bool QSerialPortPrivate::initialize(){ ... dcb.BaudRate = inputBaudRate; ...}
$git clone git://code.qt.io/qt/qtserialport.git $cd qtserialport$git checkout qt4-dev
C++ (Qt) m_serialPort = new QSerialPort(portName, this); if (!m_serialPort->setBaudRate(baudRate)) return false; if (!m_serialPort->setDataBits(QSerialPort::Data8)) return false; if (!m_serialPort->setParity(QSerialPort::NoParity)) return false; if (!m_serialPort->setStopBits(QSerialPort::OneStop)) return false; if (!m_serialPort->setFlowControl(QSerialPort::NoFlowControl)) return false; if (!m_serialPort->setDataTerminalReady(true)) return false; if (!m_serialPort->setRequestToSend(false)) return false;