Add the P25 transmitter.

This commit is contained in:
Jonathan Naylor 2016-09-08 17:53:59 +01:00
parent e25b51b486
commit dbcd17dda7
7 changed files with 289 additions and 6 deletions

View file

@ -52,6 +52,7 @@ CYSFRX ysfRX;
CYSFTX ysfTX;
CP25RX p25RX;
CP25TX p25TX;
CCalDStarRX calDStarRX;
CCalDStarTX calDStarTX;
@ -87,6 +88,9 @@ void loop()
if (m_ysfEnable && m_modemState == STATE_YSF)
ysfTX.process();
if (m_p25Enable && m_modemState == STATE_P25)
p25TX.process();
if (m_modemState == STATE_DSTARCAL)
calDStarTX.process();