// btgpi16.cpp // // A Rivendell switcher driver for the BroadcastTools GPI-16 // // (C) Copyright 2002-2020 Fred Gleason // // 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 // published by the Free Software Foundation. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public // License along with this program; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // #include #include #include #include #include "btgpi16.h" #include "globals.h" BtGpi16::BtGpi16(RDMatrix *matrix,QObject *parent) : Switcher(matrix,parent) { // // Initialize Data Structures // bt_istate=0; for(int i=0;imatrix(); bt_gpis=matrix->gpis(); // // Initialize the TTY Port // RDTty *tty=new RDTty(rda->station()->name(),matrix->port(RDMatrix::Primary)); bt_device=new RDTTYDevice(); connect(bt_device,SIGNAL(readyRead()),this,SLOT(processStatus())); if(tty->active()) { bt_device->setName(tty->port()); bt_device->setSpeed(tty->baudRate()); bt_device->setWordLength(tty->dataBits()); bt_device->setParity(tty->parity()); if(!bt_device->open(QIODevice::Unbuffered|QIODevice::ReadWrite)) { rda->syslog(LOG_WARNING,"unable to open serial device \"%s\"", (const char *)tty->port().toUtf8()); } } delete tty; } BtGpi16::~BtGpi16() { delete bt_device; } RDMatrix::Type BtGpi16::type() { return RDMatrix::BtGpi16; } unsigned BtGpi16::gpiQuantity() { return bt_gpis; } unsigned BtGpi16::gpoQuantity() { return 0; } bool BtGpi16::primaryTtyActive() { return true; } bool BtGpi16::secondaryTtyActive() { return false; } void BtGpi16::processCommand(RDMacro *cmd) { } void BtGpi16::processStatus() { char buffer[256]; int n; int gpi; while((n=bt_device->readBlock(buffer,255))>0) { for(int i=0;i