mirror of https://github.com/g4klx/MMDVM.git
Add the .ino file with the P25 support.
This commit is contained in:
parent
dbcd17dda7
commit
d3b7197366
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue