mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-14 08:35:48 +01:00
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:
@@ -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.
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user