2016-01-14 18:45:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 by Jonathan Naylor G4KLX
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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 "NullDisplay.h"
|
|
|
|
|
2016-10-18 17:25:33 +00:00
|
|
|
#if defined(RASPBERRY_PI)
|
|
|
|
#include <wiringPi.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define LED_STATUS 28
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
CNullDisplay::CNullDisplay() :
|
|
|
|
CDisplay()
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CNullDisplay::~CNullDisplay()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CNullDisplay::open()
|
|
|
|
{
|
2016-10-18 17:25:33 +00:00
|
|
|
#if defined(RASPBERRY_PI)
|
|
|
|
::wiringPiSetup();
|
|
|
|
|
|
|
|
::pinMode(LED_STATUS, OUTPUT);
|
|
|
|
::digitalWrite(LED_STATUS, 0);
|
|
|
|
#endif
|
2016-01-14 18:45:04 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void CNullDisplay::setIdleInt()
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void CNullDisplay::setErrorInt(const char* text)
|
2016-03-21 22:47:58 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void CNullDisplay::setLockoutInt()
|
2016-03-03 18:01:01 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void CNullDisplay::writeDStarInt(const char* my1, const char* my2, const char* your, const char* type, const char* reflector)
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
2016-10-18 17:25:33 +00:00
|
|
|
#if defined(RASPBERRY_PI)
|
|
|
|
::digitalWrite(LED_STATUS, 1);
|
|
|
|
#endif
|
2016-01-14 18:45:04 +00:00
|
|
|
}
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void CNullDisplay::clearDStarInt()
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
2016-10-18 17:25:33 +00:00
|
|
|
#if defined(RASPBERRY_PI)
|
|
|
|
::digitalWrite(LED_STATUS, 0);
|
|
|
|
#endif
|
2016-01-14 18:45:04 +00:00
|
|
|
}
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void CNullDisplay::writeDMRInt(unsigned int slotNo, const std::string& src, bool group, const std::string& dst, const char* type)
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
2016-10-18 17:25:33 +00:00
|
|
|
#if defined(RASPBERRY_PI)
|
|
|
|
::digitalWrite(LED_STATUS, 1);
|
|
|
|
#endif
|
2016-01-14 18:45:04 +00:00
|
|
|
}
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void CNullDisplay::clearDMRInt(unsigned int slotNo)
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
2016-10-18 17:25:33 +00:00
|
|
|
#if defined(RASPBERRY_PI)
|
|
|
|
::digitalWrite(LED_STATUS, 0);
|
|
|
|
#endif
|
2016-01-14 18:45:04 +00:00
|
|
|
}
|
|
|
|
|
2016-05-19 18:08:48 +00:00
|
|
|
void CNullDisplay::writeFusionInt(const char* source, const char* dest, const char* type, const char* origin)
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
2016-10-18 17:25:33 +00:00
|
|
|
#if defined(RASPBERRY_PI)
|
|
|
|
::digitalWrite(LED_STATUS, 1);
|
|
|
|
#endif
|
2016-01-14 18:45:04 +00:00
|
|
|
}
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void CNullDisplay::clearFusionInt()
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
2016-10-18 17:25:33 +00:00
|
|
|
#if defined(RASPBERRY_PI)
|
|
|
|
::digitalWrite(LED_STATUS, 0);
|
|
|
|
#endif
|
2016-01-14 18:45:04 +00:00
|
|
|
}
|
|
|
|
|
2016-09-12 19:23:50 +00:00
|
|
|
void CNullDisplay::writeP25Int(const char* source, bool group, unsigned int dest, const char* type)
|
2016-09-12 17:12:32 +00:00
|
|
|
{
|
2016-10-18 17:25:33 +00:00
|
|
|
#if defined(RASPBERRY_PI)
|
|
|
|
::digitalWrite(LED_STATUS, 1);
|
|
|
|
#endif
|
2016-09-12 17:12:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CNullDisplay::clearP25Int()
|
|
|
|
{
|
2016-10-18 17:25:33 +00:00
|
|
|
#if defined(RASPBERRY_PI)
|
|
|
|
::digitalWrite(LED_STATUS, 0);
|
|
|
|
#endif
|
2016-09-12 17:12:32 +00:00
|
|
|
}
|
|
|
|
|
2016-09-15 11:57:07 +00:00
|
|
|
void CNullDisplay::writeCWInt()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-09-15 13:17:51 +00:00
|
|
|
void CNullDisplay::clearCWInt()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
void CNullDisplay::close()
|
|
|
|
{
|
|
|
|
}
|