mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-10 16:43:35 +02:00
2020-02-14 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up the device access mode in the BroadcastTools 8x2 switcher driver.
This commit is contained in:
@@ -19545,3 +19545,6 @@
|
|||||||
2020-02-14 Fred Gleason <fredg@paravelsystems.com>
|
2020-02-14 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Cleaned up the device access mode in the BroadcastTools 16x1
|
* Cleaned up the device access mode in the BroadcastTools 16x1
|
||||||
switcher driver.
|
switcher driver.
|
||||||
|
2020-02-14 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Cleaned up the device access mode in the BroadcastTools 8x2
|
||||||
|
switcher driver.
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
//
|
//
|
||||||
// A Rivendell switcher driver for the BroadcastTools 8x2
|
// A Rivendell switcher driver for the BroadcastTools 8x2
|
||||||
//
|
//
|
||||||
// (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
|
||||||
@@ -44,7 +44,7 @@ Bt8x2::Bt8x2(RDMatrix *matrix,QObject *parent)
|
|||||||
bt_device->setSpeed(tty->baudRate());
|
bt_device->setSpeed(tty->baudRate());
|
||||||
bt_device->setWordLength(tty->dataBits());
|
bt_device->setWordLength(tty->dataBits());
|
||||||
bt_device->setParity(tty->parity());
|
bt_device->setParity(tty->parity());
|
||||||
bt_device->open(QIODevice::Unbuffered|QIODevice::ReadWrite);
|
bt_device->open(QIODevice::Unbuffered|QIODevice::WriteOnly);
|
||||||
}
|
}
|
||||||
delete tty;
|
delete tty;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user