MMDVMHost-Private/NullDisplay.cpp

169 lines
3.2 KiB
C++
Raw Permalink Normal View History

2016-01-14 19:45:04 +01:00
/*
2020-04-11 21:42:05 +02:00
* Copyright (C) 2016,2018,2020 by Jonathan Naylor G4KLX
2016-01-14 19:45:04 +01:00
*
* 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"
#if defined(RASPBERRY_PI)
#include <wiringPi.h>
#endif
#define LED_STATUS 28
CNullDisplay::CNullDisplay() :
CDisplay()
2016-01-14 19:45:04 +01:00
{
}
CNullDisplay::~CNullDisplay()
{
}
bool CNullDisplay::open()
{
}
void CNullDisplay::setIdleInt()
2016-01-14 19:45:04 +01:00
{
}
void CNullDisplay::setErrorInt(const char* text)
2016-03-21 23:47:58 +01:00
{
}
void CNullDisplay::setLockoutInt()
2016-03-03 19:01:01 +01:00
{
}
void CNullDisplay::setQuitInt()
{
}
2020-04-11 21:42:05 +02:00
void CNullDisplay::setFMInt()
{
}
void CNullDisplay::writeDStarInt(const char* my1, const char* my2, const char* your, const char* type, const char* reflector)
2016-01-14 19:45:04 +01:00
{
#if defined(RASPBERRY_PI)
::digitalWrite(LED_STATUS, 1);
#endif
2016-01-14 19:45:04 +01:00
}
void CNullDisplay::clearDStarInt()
2016-01-14 19:45:04 +01:00
{
#if defined(RASPBERRY_PI)
::digitalWrite(LED_STATUS, 0);
#endif
2016-01-14 19:45:04 +01:00
}
void CNullDisplay::writeDMRInt(unsigned int slotNo, const std::string& src, bool group, const std::string& dst, const char* type)
2016-01-14 19:45:04 +01:00
{
#if defined(RASPBERRY_PI)
::digitalWrite(LED_STATUS, 1);
#endif
2016-01-14 19:45:04 +01:00
}
void CNullDisplay::clearDMRInt(unsigned int slotNo)
2016-01-14 19:45:04 +01:00
{
#if defined(RASPBERRY_PI)
::digitalWrite(LED_STATUS, 0);
#endif
2016-01-14 19:45:04 +01:00
}
void CNullDisplay::writeFusionInt(const char* source, const char* dest, unsigned char dgid, const char* type, const char* origin)
2016-01-14 19:45:04 +01:00
{
#if defined(RASPBERRY_PI)
::digitalWrite(LED_STATUS, 1);
#endif
2016-01-14 19:45:04 +01:00
}
void CNullDisplay::clearFusionInt()
2016-01-14 19:45:04 +01:00
{
#if defined(RASPBERRY_PI)
::digitalWrite(LED_STATUS, 0);
#endif
2016-01-14 19:45:04 +01:00
}
2016-09-12 21:23:50 +02:00
void CNullDisplay::writeP25Int(const char* source, bool group, unsigned int dest, const char* type)
2016-09-12 19:12:32 +02:00
{
#if defined(RASPBERRY_PI)
::digitalWrite(LED_STATUS, 1);
#endif
2016-09-12 19:12:32 +02:00
}
void CNullDisplay::clearP25Int()
{
#if defined(RASPBERRY_PI)
::digitalWrite(LED_STATUS, 0);
#endif
2016-09-12 19:12:32 +02:00
}
2018-01-17 20:04:00 +01:00
void CNullDisplay::writeNXDNInt(const char* source, bool group, unsigned int dest, const char* type)
{
#if defined(RASPBERRY_PI)
::digitalWrite(LED_STATUS, 1);
#endif
}
void CNullDisplay::clearNXDNInt()
{
#if defined(RASPBERRY_PI)
::digitalWrite(LED_STATUS, 0);
#endif
}
2020-12-15 17:21:07 +01:00
void CNullDisplay::writeM17Int(const char* source, const char* dest, const char* type)
{
#if defined(RASPBERRY_PI)
::digitalWrite(LED_STATUS, 1);
#endif
}
void CNullDisplay::clearM17Int()
{
#if defined(RASPBERRY_PI)
::digitalWrite(LED_STATUS, 0);
#endif
}
void CNullDisplay::writePOCSAGInt(uint32_t ric, const std::string& message)
{
#if defined(RASPBERRY_PI)
::digitalWrite(LED_STATUS, 1);
#endif
}
void CNullDisplay::clearPOCSAGInt()
{
#if defined(RASPBERRY_PI)
::digitalWrite(LED_STATUS, 0);
#endif
}
void CNullDisplay::writeCWInt()
{
}
2016-09-15 15:17:51 +02:00
void CNullDisplay::clearCWInt()
{
}
2016-01-14 19:45:04 +01:00
void CNullDisplay::close()
{
}