From 3fd84d5ed4cf8728f5c6b327b0861d1a451be38d Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Thu, 19 Feb 2026 15:59:46 +0000 Subject: [PATCH] Fix merge compilation issue. --- IO.cpp | 6 +++--- Version.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/IO.cpp b/IO.cpp index 61b510e..dc3e0c5 100644 --- a/IO.cpp +++ b/IO.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2015,2016,2017,2018,2020,2021,2023,2025 by Jonathan Naylor G4KLX + * Copyright (C) 2015,2016,2017,2018,2020,2021,2023,2025,2026 by Jonathan Naylor G4KLX * Copyright (C) 2015 by Jim Mclaughlin KI6ZUM * Copyright (C) 2016 by Colin Durbridge G4EML * @@ -554,9 +554,9 @@ void CIO::process() else if (m_modemState == STATE_FM) { bool cos = getCOSInt(); #if defined(USE_DCBLOCKER) - fm.samples(cos, dcSamples, RX_BLOCK_SIZE); + fm.samples(cos, dcSamples, rssi, RX_BLOCK_SIZE); #else - fm.samples(cos, samples, RX_BLOCK_SIZE); + fm.samples(cos, samples, rssi, RX_BLOCK_SIZE); #endif } #endif diff --git a/Version.h b/Version.h index 1807021..9b2e92d 100644 --- a/Version.h +++ b/Version.h @@ -19,6 +19,6 @@ #if !defined(VERSION_H) #define VERSION_H -#define VERSION "20260218" +#define VERSION "20260219" #endif