You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
3.4 KiB
138 lines
3.4 KiB
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Digital Voice Modem - Hotspot Firmware
|
|
* GPLv2 Open Source. Use is subject to license terms.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* Copyright (C) 2016,2017 Jonathan Naylor, G4KLX
|
|
* Copyright (C) 2016,2017 Andy Uribe, CA6JAU
|
|
* Copyright (C) 2021-2022 Bryan Biedenkapp, N2PLL
|
|
*
|
|
*/
|
|
/**
|
|
* @file P25TX.h
|
|
* @ingroup p25_hfw
|
|
* @file P25TX.h
|
|
* @ingroup p25_hfw
|
|
*/
|
|
#if !defined(__P25_TX_H__)
|
|
#define __P25_TX_H__
|
|
|
|
#include "Defines.h"
|
|
#include "SerialBuffer.h"
|
|
|
|
namespace p25
|
|
{
|
|
// ---------------------------------------------------------------------------
|
|
// Constants
|
|
// ---------------------------------------------------------------------------
|
|
|
|
#define P25_FIXED_DELAY 90 // 90 = 20ms
|
|
#define P25_FIXED_TX_HANG 750 // 750 = 625ms
|
|
|
|
/**
|
|
* @brief P25 Transmitter State
|
|
* @ingroup p25_hfw
|
|
*/
|
|
enum P25TXSTATE {
|
|
P25TXSTATE_NORMAL, //! Normal
|
|
P25TXSTATE_CAL //! Calibration
|
|
};
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Class Declaration
|
|
// ---------------------------------------------------------------------------
|
|
|
|
/**
|
|
* @brief Implements transmitter logic for P25 mode operation.
|
|
* @ingroup p25_hfw
|
|
*/
|
|
class DSP_FW_API P25TX {
|
|
public:
|
|
/**
|
|
* @brief Initializes a new instance of the P25TX class.
|
|
*/
|
|
P25TX();
|
|
|
|
/**
|
|
* @brief Process local buffer and transmit on the air interface.
|
|
*/
|
|
void process();
|
|
|
|
/**
|
|
* @brief Write data to the local buffer.
|
|
* @param[in] data Buffer.
|
|
* @param length Length of buffer.
|
|
* @returns uint8_t Reason code.
|
|
*/
|
|
uint8_t writeData(const uint8_t* data, uint8_t length);
|
|
|
|
/**
|
|
* @brief Clears the local buffer.
|
|
*/
|
|
void clear();
|
|
|
|
/**
|
|
* @brief Sets the FDMA preamble count.
|
|
* @param preambleCnt FDMA preamble count.
|
|
*/
|
|
void setPreambleCount(uint8_t preambleCnt);
|
|
/**
|
|
* @brief Sets the transmit hang time.
|
|
* @param txHang Transmit hang time.
|
|
*/
|
|
void setTxHang(uint8_t txHang);
|
|
/**
|
|
* @brief Helper to set the calibration state for Tx.
|
|
* @param start
|
|
*/
|
|
void setCal(bool start);
|
|
|
|
/**
|
|
* @brief Helper to resize the FIFO buffer.
|
|
* @param size
|
|
*/
|
|
void resizeBuffer(uint16_t size);
|
|
|
|
/**
|
|
* @brief Helper to get how much space the ring buffer has for samples.
|
|
* @returns uint8_t Amount of space in ring buffer for samples.
|
|
*/
|
|
uint8_t getSpace() const;
|
|
|
|
private:
|
|
SerialBuffer m_fifo;
|
|
|
|
P25TXSTATE m_state;
|
|
|
|
uint8_t m_poBuffer[1200U];
|
|
uint16_t m_poLen;
|
|
uint16_t m_poPtr;
|
|
|
|
uint16_t m_preambleCnt;
|
|
uint32_t m_txHang;
|
|
uint32_t m_tailCnt;
|
|
|
|
/**
|
|
* @brief Helper to generate data.
|
|
*/
|
|
void createData();
|
|
/**
|
|
* @brief Helper to generate calibration data.
|
|
*/
|
|
void createCal();
|
|
|
|
/**
|
|
* @brief Helper to write a raw byte to the DAC.
|
|
* @param c Byte.
|
|
*/
|
|
void writeByte(uint8_t c);
|
|
/**
|
|
* @brief
|
|
*/
|
|
void writeSilence();
|
|
};
|
|
} // namespace p25
|
|
|
|
#endif // __P25_TX_H__
|