Skip to content

Commit

Permalink
ParityChange
Browse files Browse the repository at this point in the history
  • Loading branch information
Imeguras committed Oct 4, 2023
1 parent 1c1e98d commit 51aa009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ int store::setupSerial() {
serial->setBaudRate(this->baud);
serial->setDataBits(QSerialPort::Data8);
serial->setStopBits(QSerialPort::OneStop);
serial->setParity(QSerialPort::OddParity);
//serial->setParity(QSerialPort::OddParity);
serial->setFlowControl(QSerialPort::NoFlowControl);
if (!serial->open(QIODevice::ReadWrite)) {
qDebug() << "Can't open " << this->dev << ", error code" << serial->error();
Expand Down

0 comments on commit 51aa009

Please sign in to comment.