Add the .ino file with the P25 support.

This commit is contained in:
Jonathan Naylor 2016-09-08 18:35:16 +01:00
parent dbcd17dda7
commit d3b7197366
1 changed files with 4 additions and 0 deletions

View File

@ -49,6 +49,7 @@ CYSFRX ysfRX;
CYSFTX ysfTX;
CP25RX p25RX;
CP25TX p25TX;
CCalDStarRX calDStarRX;
CCalDStarTX calDStarTX;
@ -84,6 +85,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();