From 404dc3d99db490cb261988acf85ce43f3ab1e184 Mon Sep 17 00:00:00 2001 From: Andy CA6JAU Date: Fri, 20 Jul 2018 20:31:38 -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 32df9cc..d53f9b7 100644 --- a/POCSAGTX.cpp +++ b/POCSAGTX.cpp @@ -89,7 +89,7 @@ void CPOCSAGTX::process() bool CPOCSAGTX::busy() { - if (m_poLen > 0U) + if (m_poLen > 0U || m_buffer.getData() > 0U) return true; else return false;