MMDVM_CM/USRP2P25/ModeConv.h

68 lines
1.9 KiB
C++

/*
* Copyright (C) 2010,2014,2016,2018 by Jonathan Naylor G4KLX
* Copyright (C) 2018 by Andy Uribe CA6JAU
* Copyright (C) 2021 by Doug McLain AD8DP
*
* 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 "RingBuffer.h"
#include "MBEVocoder.h"
const unsigned char TAG_HEADER = 0x00U;
const unsigned char TAG_DATA = 0x01U;
const unsigned char TAG_LOST = 0x02U;
const unsigned char TAG_EOT = 0x03U;
const unsigned char TAG_NODATA = 0x04U;
const int16_t TAG_USRP_HEADER = 0x0000U;
const int16_t TAG_USRP_DATA = 0x0001U;
const int16_t TAG_USRP_LOST = 0x0002U;
const int16_t TAG_USRP_EOT = 0x0003U;
const int16_t TAG_USRP_NODATA = 0x0004U;
#if !defined(MODECONV_H)
#define MODECONV_H
class CModeConv {
public:
CModeConv();
~CModeConv();
void setUSRPGainAdjDb(std::string dbstring);
void setP25GainAdjDb(std::string dbstring);
void putUSRP(int16_t* data);
void putUSRPHeader();
void putUSRPEOT();
void putP25Header();
void putP25EOT();
void putP25(unsigned char* data);
uint32_t getP25(uint8_t* data);
uint32_t getUSRP(int16_t* data);
private:
uint32_t m_p25N;
uint32_t m_usrpN;
CRingBuffer<uint8_t> m_P25;
CRingBuffer<int16_t> m_USRP;
MBEVocoder *m_mbe;
uint16_t m_p25GainMultiplier;
bool m_p25Attenuate;
uint16_t m_usrpGainMultiplier;
bool m_usrpAttenuate;
};
#endif