kopia lustrzana https://github.com/OpenRTX/OpenRTX
79 wiersze
2.4 KiB
C++
79 wiersze
2.4 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2021 - 2023 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 <http://www.gnu.org/licenses/> *
|
|
***************************************************************************/
|
|
|
|
#include "HR_C6000_wrapper.h"
|
|
#include "HR_C6000.h"
|
|
|
|
void C6000_init()
|
|
{
|
|
HR_C6000::instance().init();
|
|
}
|
|
|
|
void C6000_terminate()
|
|
{
|
|
HR_C6000::instance().terminate();
|
|
}
|
|
|
|
void C6000_setModOffset(uint16_t offset)
|
|
{
|
|
HR_C6000::instance().setModOffset(offset);
|
|
}
|
|
|
|
void C6000_setModAmplitude(uint8_t iAmp, uint8_t qAmp)
|
|
{
|
|
HR_C6000::instance().setModAmplitude(iAmp, qAmp);
|
|
}
|
|
|
|
void C6000_setMod2Bias(uint8_t bias)
|
|
{
|
|
HR_C6000::instance().writeCfgRegister(0x04, bias);
|
|
}
|
|
|
|
void C6000_setModFactor(uint8_t mf)
|
|
{
|
|
HR_C6000::instance().setModFactor(mf);
|
|
}
|
|
|
|
void C6000_setDacGain(uint8_t value)
|
|
{
|
|
HR_C6000::instance().setDacGain(value);
|
|
}
|
|
|
|
void C6000_dmrMode()
|
|
{
|
|
HR_C6000::instance().dmrMode();
|
|
}
|
|
|
|
void C6000_fmMode()
|
|
{
|
|
HR_C6000::instance().fmMode();
|
|
}
|
|
|
|
void C6000_startAnalogTx()
|
|
{
|
|
HR_C6000::instance().startAnalogTx(TxAudioSource::MIC, FmConfig::PREEMPH_EN |
|
|
FmConfig::BW_25kHz);
|
|
}
|
|
|
|
void C6000_stopAnalogTx()
|
|
{
|
|
HR_C6000::instance().stopAnalogTx();
|
|
}
|