From 9f28d2f69ac9564fad266f25dc80545956a205d5 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Wed, 7 Feb 2018 21:02:07 +0000 Subject: [PATCH] Small cleanup. --- IO.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/IO.cpp b/IO.cpp index 779dafa..c9bb583 100644 --- a/IO.cpp +++ b/IO.cpp @@ -323,10 +323,10 @@ void CIO::process() } if (m_p25Enable) { - q15_t C4FSKVals[RX_BLOCK_SIZE]; - ::arm_fir_fast_q15(&m_boxcarFilter, dcSamples, C4FSKVals, RX_BLOCK_SIZE); + q15_t P25Vals[RX_BLOCK_SIZE]; + ::arm_fir_fast_q15(&m_boxcarFilter, dcSamples, P25Vals, RX_BLOCK_SIZE); - p25RX.samples(C4FSKVals, rssi, RX_BLOCK_SIZE); + p25RX.samples(P25Vals, rssi, RX_BLOCK_SIZE); } if (m_nxdnEnable) {