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

* Cleaned up the device access mode in the Starguide 3 switcher
	driver.
This commit is contained in:
Fred Gleason 2020-02-17 08:20:04 -05:00
parent 9daedd7f19
commit 466b5fb803
2 changed files with 8 additions and 2 deletions

View File

@ -19606,3 +19606,9 @@
driver.
2020-02-16 Fred Gleason <fredg@paravelsystems.com>
* Removed Q3Socket dependency from the SAS USI switcher driver.
2020-02-16 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up the device access mode in the SAS USI switcher
driver.
2020-02-16 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up the device access mode in the Starguide 3 switcher
driver.

View File

@ -2,7 +2,7 @@
//
// A Rivendell switcher driver for the StarGuide III Satellite Receiver
//
// (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
// it under the terms of the GNU General Public License version 2 as
@ -73,7 +73,7 @@ StarGuide3::StarGuide3(RDMatrix *matrix,QObject *parent)
sg_device->setSpeed(tty->baudRate());
sg_device->setWordLength(tty->dataBits());
sg_device->setParity(tty->parity());
sg_device->open(QIODevice::Unbuffered|QIODevice::ReadWrite);
sg_device->open(QIODevice::Unbuffered|QIODevice::WriteOnly);
}
delete tty;
}