2016-01-14 18:45:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015,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.
|
|
|
|
*/
|
|
|
|
|
2016-02-15 18:45:57 +00:00
|
|
|
#if !defined(DMRIPSC_H)
|
|
|
|
#define DMRIPSC_H
|
2016-01-14 18:45:04 +00:00
|
|
|
|
|
|
|
#include "UDPSocket.h"
|
|
|
|
#include "Timer.h"
|
|
|
|
#include "RingBuffer.h"
|
|
|
|
#include "DMRData.h"
|
2016-09-05 16:40:43 +00:00
|
|
|
#include "Defines.h"
|
2016-01-14 18:45:04 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <cstdint>
|
|
|
|
|
2016-02-15 18:45:57 +00:00
|
|
|
class CDMRIPSC
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-09-05 16:40:43 +00:00
|
|
|
CDMRIPSC(const std::string& address, unsigned int port, unsigned int local, unsigned int id, const std::string& password, bool duplex, const char* version, bool debug, bool slot1, bool slot2, bool rssi, HW_TYPE hwType);
|
2016-02-15 18:45:57 +00:00
|
|
|
~CDMRIPSC();
|
2016-01-14 18:45:04 +00:00
|
|
|
|
|
|
|
void setConfig(const std::string& callsign, unsigned int rxFrequency, unsigned int txFrequency, unsigned int power, unsigned int colorCode, float latitude, float longitude, int height, const std::string& location, const std::string& description, const std::string& url);
|
|
|
|
|
|
|
|
bool open();
|
|
|
|
|
2016-01-25 18:11:44 +00:00
|
|
|
void enable(bool enabled);
|
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
bool read(CDMRData& data);
|
|
|
|
|
|
|
|
bool write(const CDMRData& data);
|
|
|
|
|
|
|
|
bool wantsBeacon();
|
|
|
|
|
|
|
|
void clock(unsigned int ms);
|
|
|
|
|
|
|
|
void close();
|
|
|
|
|
|
|
|
private:
|
|
|
|
in_addr m_address;
|
|
|
|
unsigned int m_port;
|
|
|
|
uint8_t* m_id;
|
|
|
|
std::string m_password;
|
2016-03-08 17:26:51 +00:00
|
|
|
bool m_duplex;
|
2016-01-14 18:45:04 +00:00
|
|
|
const char* m_version;
|
2016-03-08 17:26:51 +00:00
|
|
|
bool m_debug;
|
2016-01-14 18:45:04 +00:00
|
|
|
CUDPSocket m_socket;
|
2016-01-25 18:11:44 +00:00
|
|
|
bool m_enabled;
|
2016-02-15 20:36:05 +00:00
|
|
|
bool m_slot1;
|
|
|
|
bool m_slot2;
|
2016-08-08 20:26:18 +00:00
|
|
|
bool m_rssi;
|
2016-09-05 16:40:43 +00:00
|
|
|
HW_TYPE m_hwType;
|
2016-01-14 18:45:04 +00:00
|
|
|
|
|
|
|
enum STATUS {
|
2016-05-16 17:08:10 +00:00
|
|
|
WAITING_CONNECT,
|
2016-01-14 18:45:04 +00:00
|
|
|
WAITING_LOGIN,
|
|
|
|
WAITING_AUTHORISATION,
|
|
|
|
WAITING_CONFIG,
|
|
|
|
RUNNING
|
|
|
|
};
|
|
|
|
|
|
|
|
STATUS m_status;
|
|
|
|
CTimer m_retryTimer;
|
|
|
|
CTimer m_timeoutTimer;
|
|
|
|
unsigned char* m_buffer;
|
|
|
|
unsigned char* m_salt;
|
|
|
|
uint32_t* m_streamId;
|
|
|
|
|
|
|
|
CRingBuffer<unsigned char> m_rxData;
|
|
|
|
|
|
|
|
std::string m_callsign;
|
|
|
|
unsigned int m_rxFrequency;
|
|
|
|
unsigned int m_txFrequency;
|
|
|
|
unsigned int m_power;
|
|
|
|
unsigned int m_colorCode;
|
|
|
|
float m_latitude;
|
|
|
|
float m_longitude;
|
|
|
|
int m_height;
|
|
|
|
std::string m_location;
|
|
|
|
std::string m_description;
|
|
|
|
std::string m_url;
|
|
|
|
|
|
|
|
bool m_beacon;
|
|
|
|
|
|
|
|
bool writeLogin();
|
|
|
|
bool writeAuthorisation();
|
|
|
|
bool writeConfig();
|
|
|
|
bool writePing();
|
|
|
|
|
|
|
|
bool write(const unsigned char* data, unsigned int length);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|