2020-02-14 Fred Gleason <fredg@paravelsystems.com>

* Cleaned up the device access mode in the BroadcastTools 10x1
	switcher driver.
This commit is contained in:
Fred Gleason 2020-02-14 18:06:18 -05:00
parent 416ce7be19
commit 031001ddb2
2 changed files with 4 additions and 1 deletions

View File

@ -19539,3 +19539,6 @@
2020-02-14 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in the BroadcastTools SS4.4 switcher driver
that could cause deadlocks and intermittent operation.
2020-02-14 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up the device access mode in the BroadcastTools 10x1
switcher driver.

View File

@ -44,7 +44,7 @@ Bt10x1::Bt10x1(RDMatrix *matrix,QObject *parent)
bt_device->setSpeed(tty->baudRate());
bt_device->setWordLength(tty->dataBits());
bt_device->setParity(tty->parity());
bt_device->open(QIODevice::Unbuffered|QIODevice::ReadWrite);
bt_device->open(QIODevice::Unbuffered|QIODevice::WriteOnly);
}
delete tty;
}