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

* Cleaned up the device access mode in the Ross NK SCP/A switcher
	driver.
This commit is contained in:
Fred Gleason
2020-02-14 19:49:39 -05:00
parent 2466c4dd80
commit b431719f57
2 changed files with 5 additions and 2 deletions

View File

@@ -19583,3 +19583,6 @@
that could cause deadlocks and intermittent operation. that could cause deadlocks and intermittent operation.
2020-02-14 Fred Gleason <fredg@paravelsystems.com> 2020-02-14 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up the device access mode in the Quartz 1 switcher driver. * Cleaned up the device access mode in the Quartz 1 switcher driver.
2020-02-14 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up the device access mode in the Ross NK SCP/A switcher
driver.

View File

@@ -2,7 +2,7 @@
// //
// A Rivendell switcher driver for the Ross NK switchers via the SCP/A // A Rivendell switcher driver for the Ross NK switchers via the SCP/A
// //
// (C) Copyright 2002-2019 Fred Gleason <fredg@paravelsystems.com> // (C) Copyright 2002-2020 Fred Gleason <fredg@paravelsystems.com>
// //
// This program is free software; you can redistribute it and/or modify // This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as // it under the terms of the GNU General Public License version 2 as
@@ -46,7 +46,7 @@ RossNkScp::RossNkScp(RDMatrix *matrix,QObject *parent)
ross_device->setSpeed(tty->baudRate()); ross_device->setSpeed(tty->baudRate());
ross_device->setWordLength(tty->dataBits()); ross_device->setWordLength(tty->dataBits());
ross_device->setParity(tty->parity()); ross_device->setParity(tty->parity());
ross_device->open(QIODevice::Unbuffered|QIODevice::ReadWrite); ross_device->open(QIODevice::Unbuffered|QIODevice::WriteOnly);
} }
delete tty; delete tty;
} }