From 12e8114a3ee1a3ea89ffb0916e5ead2a01cdf978 Mon Sep 17 00:00:00 2001 From: Andy CA6JAU Date: Fri, 20 Jul 2018 20:38:29 -0400 Subject: [PATCH] Additional check to transmit all POCSAG buffer --- POCSAGTX.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/POCSAGTX.cpp b/POCSAGTX.cpp index b4dc7ab..228f34a 100644 --- a/POCSAGTX.cpp +++ b/POCSAGTX.cpp @@ -72,7 +72,7 @@ void CPOCSAGTX::process() bool CPOCSAGTX::busy() { - if (m_poLen > 0U) + if (m_poLen > 0U || m_buffer.getData() > 0U) return true; else return false;