Begin adding AX25 TX.

This commit is contained in:
Jonathan Naylor 2020-06-21 19:16:02 +01:00
parent 33d922b8c2
commit f9fcdc5292
8 changed files with 95 additions and 6 deletions

View file

@ -63,6 +63,7 @@ CPOCSAGTX pocsagTX;
CFM fm;
CAX25RX ax25RX;
CAX25TX ax25TX;
CCalDStarRX calDStarRX;
CCalDStarTX calDStarTX;
@ -112,6 +113,9 @@ void loop()
if (m_pocsagEnable && (m_modemState == STATE_POCSAG || pocsagTX.busy()))
pocsagTX.process();
if (m_ax25Enable && (m_modemState == STATE_IDLE || m_modemState == STATE_FM))
ax25TX.process();
if (m_fmEnable && m_modemState == STATE_FM)
fm.process();