mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-10-31 22:24:02 +01:00 
			
		
		
		
	* Converted ripcd(8) to use RDApplication. * Documented a 'Notification' message type in 'docs/apis/notification.xml'. * Added an 'RDMulticaster' class. * Added an 'mcast_recv_test' program in 'tests/'. * Added a 'SYSTEM.NOTIFICATION_ADDRESS' field to the database. * Incremented the database version to 276. * Added an 'Mcast Address for Notifications' control to the 'System-Wide Settings' dialog in rdadmin(1). * Implemented the 'Process Notification' ['ON'] command in ripcd(8). * Added an 'RDRipc::sendNotification()' method. * Added an 'RDRipc::notificationReceived()' signal.
		
			
				
	
	
		
			229 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			229 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // btgpi16.cpp
 | |
| //
 | |
| // A Rivendell switcher driver for the BroadcastTools GPI-16
 | |
| //
 | |
| //   (C) Copyright 2002-2005,2010,2016-2018 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
 | |
| //   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 <stdlib.h>
 | |
| 
 | |
| #include <qtimer.h>
 | |
| 
 | |
| #include <rdapplication.h>
 | |
| 
 | |
| #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;i<BTGPI16_GPIO_PINS;i++) {
 | |
|     bt_gpi_state[i]=false;
 | |
|     bt_gpi_mask[i]=false;
 | |
|   }
 | |
| 
 | |
|   //
 | |
|   // Get Matrix Parameters
 | |
|   //
 | |
|   bt_matrix=matrix->matrix();
 | |
|   bt_gpis=matrix->gpis();
 | |
| 
 | |
|   //
 | |
|   // Initialize the TTY Port
 | |
|   //
 | |
|   RDTty *tty=new RDTty(rda->station()->name(),matrix->port(RDMatrix::Primary));
 | |
|   bt_device=new RDTTYDevice();
 | |
|   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(IO_Raw|IO_ReadWrite)) {
 | |
|       LogLine(RDConfig::LogWarning,"unable to open serial device \""+tty->port()+"\".");
 | |
|     }
 | |
|   }
 | |
|   delete tty;
 | |
| 
 | |
|   //
 | |
|   // The Poll Timer
 | |
|   //
 | |
|   QTimer *timer=new QTimer(this,"poll_timer");
 | |
|   connect(timer,SIGNAL(timeout()),this,SLOT(processStatus()));
 | |
|   timer->start(BTGPI16_POLL_INTERVAL);
 | |
| }
 | |
| 
 | |
| 
 | |
| 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<n;i++) {
 | |
|       switch(bt_istate) {
 | |
| 	  case 0:
 | |
| 	    if(buffer[i]=='S') {
 | |
| 	      bt_istate=1;
 | |
| 	    }
 | |
| 	    break;
 | |
| 
 | |
| 	  case 1:
 | |
| 	    if(buffer[i]==(BTGPI16_UNIT_ID+'0')) {
 | |
| 	      bt_istate=2;
 | |
| 	    }
 | |
| 	    else {
 | |
| 	      bt_istate=0;
 | |
| 	    }
 | |
| 	    break;
 | |
| 
 | |
| 	  case 2:
 | |
| 	    if(buffer[i]=='P') {
 | |
| 	      bt_istate=3;
 | |
| 	    }
 | |
| 	    else {
 | |
| 	      bt_istate=0;
 | |
| 	    }
 | |
| 	    break;
 | |
| 
 | |
| 	  case 3:
 | |
| 	    if(buffer[i]==',') {
 | |
| 	      bt_istate=4;
 | |
| 	    }
 | |
| 	    else {
 | |
| 	      bt_istate=0;
 | |
| 	    }
 | |
| 	    break;
 | |
| 
 | |
| 	  case 4:
 | |
| 	    if(buffer[i]=='A') {
 | |
| 	      bt_istate=5;
 | |
| 	    }
 | |
| 	    else {
 | |
| 	      bt_istate=0;
 | |
| 	    }
 | |
| 	    break;
 | |
| 
 | |
| 	  case 5:
 | |
| 	  case 7:
 | |
| 	  case 9:
 | |
| 	  case 11:
 | |
| 	  case 13:
 | |
| 	  case 15:
 | |
| 	  case 17:
 | |
| 	  case 19:
 | |
| 	  case 21:
 | |
| 	  case 23:
 | |
| 	  case 25:
 | |
| 	  case 27:
 | |
| 	  case 29:
 | |
| 	  case 31:
 | |
| 	  case 33:
 | |
| 	  case 35:
 | |
| 	    if(buffer[i]==',') {
 | |
| 	      bt_istate++;
 | |
| 	    }
 | |
| 	    else {
 | |
| 	      bt_istate=0;
 | |
| 	    }
 | |
| 	    break;
 | |
| 
 | |
| 	  case 6:
 | |
| 	  case 8:
 | |
| 	  case 10:
 | |
| 	  case 12:
 | |
| 	  case 14:
 | |
| 	  case 16:
 | |
| 	  case 18:
 | |
| 	  case 20:
 | |
| 	  case 22:
 | |
| 	  case 24:
 | |
| 	  case 26:
 | |
| 	  case 28:
 | |
| 	  case 30:
 | |
| 	  case 32:
 | |
| 	  case 34:
 | |
| 	  case 36:
 | |
| 	    if(buffer[i]=='0') {
 | |
| 	      gpi=(bt_istate-6)/2;
 | |
| 	      if(bt_gpi_state[gpi]&&(!bt_gpi_mask[gpi])) {
 | |
| 		emit gpiChanged(bt_matrix,gpi,false);
 | |
| 		bt_gpi_state[gpi]=false;
 | |
| 	      }
 | |
| 	      bt_istate++;
 | |
| 	    }
 | |
| 	    if(buffer[i]=='1') {
 | |
| 	      gpi=(bt_istate-6)/2;
 | |
| 	      if((!bt_gpi_state[gpi])&&(!bt_gpi_mask[gpi])) {
 | |
| 		emit gpiChanged(bt_matrix,gpi,true);
 | |
| 		bt_gpi_state[gpi]=true;
 | |
| 	      }
 | |
| 	      bt_istate++;
 | |
| 	    }
 | |
| 	    break;
 | |
| 
 | |
| 	  default:
 | |
| 	    bt_istate=0;
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| }
 |