/***************************************************************************
* Copyright (C) 2020 by Federico Amedeo Izzo IU2NUO, *
* Niccolò Izzo IU2KIN *
* Frederik Saraci IU2NRO *
* Silvano Seva IU2KWO *
* *
* 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 3 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, see *
***************************************************************************/
#include
#include
#include
#include
#include
#include
pthread_mutex_t *cfgMutex; /* Mutex for incoming config messages */
const rtxStatus_t *newCnf; /* Pointer for incoming config messages */
rtxStatus_t rtxStatus; /* RTX driver status */
bool sqlOpen; /* Flag for squelch open/close */
bool enterRx; /* Flag for RX mode activation */
float rssi; /* Current RSSI in dBm */
/*
* These functions below provide a basic API for audio path management. They
* will be removed once the audio driver is set up.
*/
void _afCtrlInit()
{
#if defined(PLATFORM_MD3x0)
gpio_setMode(SPK_MUTE, OUTPUT);
gpio_setMode(AMP_EN, OUTPUT);
gpio_setMode(FM_MUTE, OUTPUT);
gpio_setMode(MIC_PWR, OUTPUT);
#elif defined(PLATFORM_GD77) || defined(PLATFORM_DM1801)
gpio_setMode(AUDIO_AMP_EN, OUTPUT);
#endif
}
void _afCtrlSpeaker(bool enable)
{
if(enable)
{
#if defined(PLATFORM_MD3x0)
gpio_setPin(AMP_EN);
gpio_setPin(FM_MUTE);
gpio_clearPin(SPK_MUTE);
#elif defined(PLATFORM_GD77) || defined(PLATFORM_DM1801)
gpio_setPin(AUDIO_AMP_EN);
#endif
}
else
{
#if defined(PLATFORM_MD3x0)
gpio_clearPin(AMP_EN);
gpio_clearPin(FM_MUTE);
gpio_setPin(SPK_MUTE);
#elif defined(PLATFORM_GD77) || defined(PLATFORM_DM1801)
gpio_clearPin(AUDIO_AMP_EN);
#endif
}
}
void _afCtrlMic(bool enable)
{
if(enable)
{
#if defined(PLATFORM_MD3x0)
gpio_setPin(MIC_PWR);
#endif
}
else
{
#if defined(PLATFORM_MD3x0)
gpio_clearPin(MIC_PWR);
#endif
}
}
void _afCtrlTerminate()
{
_afCtrlMic(false);
_afCtrlSpeaker(false);
}
void rtx_init(pthread_mutex_t *m)
{
/* Initialise mutex for configuration access */
cfgMutex = m;
newCnf = NULL;
/*
* Default initialisation for rtx status
*/
rtxStatus.opMode = FM;
rtxStatus.bandwidth = BW_25;
rtxStatus.txDisable = 0;
rtxStatus.opStatus = OFF;
rtxStatus.rxFrequency = 430000000;
rtxStatus.txFrequency = 430000000;
rtxStatus.txPower = 0.0f;
rtxStatus.sqlLevel = 1;
rtxStatus.rxToneEn = 0;
rtxStatus.rxTone = 0;
rtxStatus.txToneEn = 0;
rtxStatus.txTone = 0;
sqlOpen = false;
enterRx = false;
/*
* Initialise low-level platform-specific driver
*/
radio_init();
/*
* Initial value for RSSI filter
*/
rssi = radio_getRssi(rtxStatus.rxFrequency);
_afCtrlInit();
}
void rtx_terminate()
{
_afCtrlTerminate();
radio_terminate();
}
void rtx_configure(const rtxStatus_t *cfg)
{
pthread_mutex_lock(cfgMutex);
newCnf = cfg;
pthread_mutex_unlock(cfgMutex);
}
rtxStatus_t rtx_getCurrentStatus()
{
return rtxStatus;
}
void rtx_taskFunc()
{
/* Configuration update logic */
bool reconfigure = false;
if(pthread_mutex_trylock(cfgMutex) == 0)
{
if(newCnf != NULL)
{
/* Copy new configuration and override opStatus flags */
uint8_t tmp = rtxStatus.opStatus;
memcpy(&rtxStatus, newCnf, sizeof(rtxStatus_t));
rtxStatus.opStatus = tmp;
reconfigure = true;
newCnf = NULL;
}
pthread_mutex_unlock(cfgMutex);
}
if(reconfigure)
{
/* Update HW configuration */
radio_setOpmode(rtxStatus.opMode);
radio_setBandwidth(rtxStatus.bandwidth);
radio_setCSS(rtxStatus.rxTone, rtxStatus.txTone);
radio_updateCalibrationParams(&rtxStatus);
/*
* If currently transmitting or receiving, update VCO frequency and
* call again enableRx/enableTx.
* This is done because the new configuration may have changed the
* RX and TX frequencies, requiring an update of both the VCO
* settings and of some tuning parameters, like APC voltage, which
* are managed by enableRx/enableTx.
*/
if(rtxStatus.opStatus == TX)
{
radio_setVcoFrequency(rtxStatus.txFrequency, true);
radio_enableTx(rtxStatus.txPower, rtxStatus.txToneEn);
}
if(rtxStatus.opStatus == RX)
{
radio_setVcoFrequency(rtxStatus.rxFrequency, false);
radio_enableRx();
}
/* TODO: temporarily force to RX mode if rtx is off. */
if(rtxStatus.opStatus == OFF) enterRx = true;
}
/* RX logic */
if(rtxStatus.opStatus == RX)
{
/*
* RSSI-based squelch mechanism, with 15 levels from -140dBm to -70dBm.
*
* RSSI value is passed through a filter with a time constant of 60ms
* (cut-off frequency of 15Hz) at an update rate of 33.3Hz
*/
rssi = 0.74*radio_getRssi(rtxStatus.rxFrequency) + 0.26*rssi;
float squelch = -127.0f + rtxStatus.sqlLevel * 66.0f / 15.0f;
if((sqlOpen == false) && (rssi > (squelch + 0.1f)))
{
_afCtrlSpeaker(true);
sqlOpen = true;
}
if((sqlOpen == true) && (rssi < (squelch - 0.1f)))
{
_afCtrlSpeaker(false);
sqlOpen = false;
}
}
else if((rtxStatus.opMode == OFF) && enterRx)
{
radio_disableRtx();
radio_setVcoFrequency(rtxStatus.rxFrequency, false);
radio_enableRx();
rtxStatus.opStatus = RX;
enterRx = false;
/* Reinitialise RSSI filter state */
rssi = radio_getRssi(rtxStatus.rxFrequency);
}
/* TX logic */
if(platform_getPttStatus() && (rtxStatus.opStatus != TX))
{
radio_disableRtx();
_afCtrlMic(true);
radio_setVcoFrequency(rtxStatus.txFrequency, true);
radio_enableTx(rtxStatus.txPower, rtxStatus.txToneEn);
rtxStatus.opStatus = TX;
}
if(!platform_getPttStatus() && (rtxStatus.opStatus == TX))
{
_afCtrlMic(false);
radio_disableRtx();
rtxStatus.opStatus = OFF;
enterRx = true;
}
/* Led control logic */
switch(rtxStatus.opStatus)
{
case RX:
if(sqlOpen)
platform_ledOn(GREEN);
else
platform_ledOff(GREEN);
break;
case TX:
platform_ledOff(GREEN);
platform_ledOn(RED);
break;
default:
platform_ledOff(GREEN);
platform_ledOff(RED);
break;
}
}
float rtx_getRssi()
{
return rssi;
}