Merge pull request #198 from recursivenomad/fix/dtr

Add DTR control signal for Serial connections
This commit is contained in:
Alex Spataru 2024-08-05 15:10:13 -05:00 committed by GitHub
commit 48dacaf10f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -187,6 +187,7 @@ bool IO::Drivers::Serial::open(const QIODevice::OpenMode mode)
{
connect(port(), &QIODevice::readyRead, this,
&IO::Drivers::Serial::onReadyRead);
port()->setDataTerminalReady(true);
return true;
}
}