mirror of
https://github.com/g4klx/MMDVM.git
synced 2026-04-05 22:46:59 +00:00
Add the P25 transmitter.
This commit is contained in:
parent
e25b51b486
commit
dbcd17dda7
7 changed files with 289 additions and 6 deletions
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue