From 8f320ad8ee8e1b5e90f46060b049967989e2c815 Mon Sep 17 00:00:00 2001 From: MrBungle42 Date: Thu, 30 Mar 2017 22:48:30 -0400 Subject: [PATCH] Update IO.cpp When you added the scan mode, you had a cut/copy/paste error. P25 was broke. --- IO.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IO.cpp b/IO.cpp index 7037241..9cf6884 100644 --- a/IO.cpp +++ b/IO.cpp @@ -135,7 +135,7 @@ void CIO::process() ysfRX.databit(bit); break; case STATE_P25: - ysfRX.databit(bit); + p25RX.databit(bit); break; default: break;