From a63ead7a270fe02afda1dc6e89f89784b45ae5d3 Mon Sep 17 00:00:00 2001 From: boblark Date: Fri, 10 Mar 2023 20:13:16 -0800 Subject: [PATCH] Corrected comment --- radioFT8Demodulator_F32.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radioFT8Demodulator_F32.h b/radioFT8Demodulator_F32.h index 7436cdd..dde2f6e 100644 --- a/radioFT8Demodulator_F32.h +++ b/radioFT8Demodulator_F32.h @@ -130,7 +130,7 @@ public: } // Following reflects that there are only 2 supported sample rates. - // IMPORTANT: This changes constants for FT8 Transmit, only. It does not + // IMPORTANT: This changes constants for FT8 Receive, only. It does not // change system-wide audio sample rate. Use AudioSettings_F32. void setSampleRate_Hz(const float32_t &fs_Hz) { sampleRateHz = fs_Hz; @@ -146,7 +146,7 @@ public: } else { - Serial.println("Unsupported sample rate, FT-8 will not receive.");\ + Serial.println("Unsupported sample rate, FT8 will not receive.");\ srIndex = SR_NONE; } }