2023-05-22 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in the BroadcastTools ACS8.2 driver in ripcd(8).

Signed-off-by: Fred Gleason <fredg@paraelsystems.com>
This commit is contained in:
Fred Gleason 2023-05-22 17:03:36 -04:00
parent abeb123f88
commit c89b4bdc6e
2 changed files with 5 additions and 5 deletions

View File

@ -24160,3 +24160,5 @@
rdlogmanager(1) to be fully resizeable.
2023-05-22 Fred Gleason <fredg@paravelsystems.com>
* Updated screenshot for rdlogmanager(1) in the Operations Guide.
2023-05-22 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in the BroadcastTools ACS8.2 driver in ripcd(8).

View File

@ -2,7 +2,7 @@
//
// A Rivendell switcher driver for the BroadcastTools ACS 8.2
//
// (C) Copyright 2002-2021 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2002-2023 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
@ -65,11 +65,9 @@ BtAcs82::BtAcs82(RDMatrix *matrix,QObject *parent)
// Interval OneShots
//
bt_gpi_oneshot=new RDOneShot(this);
connect(bt_gpi_oneshot,SIGNAL(timeout(void *)),
this,SLOT(gpiOneshotData(int)));
connect(bt_gpi_oneshot,SIGNAL(timeout(int)),this,SLOT(gpiOneshotData(int)));
bt_gpo_oneshot=new RDOneShot(this);
connect(bt_gpo_oneshot,SIGNAL(timeout(void *)),
this,SLOT(gpoOneshotData(int)));
connect(bt_gpo_oneshot,SIGNAL(timeout(int)),this,SLOT(gpoOneshotData(int)));
}