From 5ace32a1ee22bfdb0c0f2e599df0c9a406df8a09 Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Sun, 20 Dec 2015 13:33:08 -0800 Subject: [PATCH] Fix inaccurate comment. --- firmware/baseband/channel_decimator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/baseband/channel_decimator.cpp b/firmware/baseband/channel_decimator.cpp index 59dbd7ea..c8a7cf5c 100644 --- a/firmware/baseband/channel_decimator.cpp +++ b/firmware/baseband/channel_decimator.cpp @@ -47,7 +47,7 @@ buffer_c16_t ChannelDecimator::execute_decimation(const buffer_c8_t& buffer) { /* 1.536MHz complex[1024], [-32768, 32512] * -> 3rd order CIC: -0.1dB @ 0.028fs, -1dB @ 0.088fs, -60dB @ 0.468fs * -0.1dB @ 43kHz, -1dB @ 136kHz, -60dB @ 723kHz - * -> gain of 8 + * -> gain of 1 * -> decimation by 2 * -> 768kHz complex[512], [-8192, 8128] */ auto cic_1_out = cic_1.execute(stage_0_out, work_baseband_buffer);