From b6cb23d87670bf0448fcde418f4815468c7757e9 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Tue, 12 Jun 2018 20:59:39 +0100 Subject: [PATCH] Invert the transmit frequencies. --- POCSAGTX.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/POCSAGTX.cpp b/POCSAGTX.cpp index 0f243d1..9019155 100644 --- a/POCSAGTX.cpp +++ b/POCSAGTX.cpp @@ -26,8 +26,8 @@ const uint16_t POCSAG_FRAME_LENGTH_BYTES = 17U * sizeof(uint32_t); const uint16_t POCSAG_RADIO_SYMBOL_LENGTH = 20U; -const q15_t POCSAG_LEVEL0[] = { 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155}; -const q15_t POCSAG_LEVEL1[] = {-3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155}; +const q15_t POCSAG_LEVEL1[] = { 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155, 3155}; +const q15_t POCSAG_LEVEL0[] = {-3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155, -3155}; const uint8_t POCSAG_SYNC = 0xAAU;