From 28ca45326dd05a9be2c831c6a93abcd50bd3a35f Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Thu, 21 Apr 2016 11:54:39 -0700 Subject: [PATCH] Fix capture mode baseband_fs value. --- firmware/baseband/proc_capture.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/firmware/baseband/proc_capture.hpp b/firmware/baseband/proc_capture.hpp index 008c10d20..9a8ee0f4e 100644 --- a/firmware/baseband/proc_capture.hpp +++ b/firmware/baseband/proc_capture.hpp @@ -41,7 +41,8 @@ public: void on_message(const Message* const message) override; private: - static constexpr size_t baseband_fs = 2457600; + // TODO: Repeated value needs to be transmitted from application side. + static constexpr size_t baseband_fs = 4000000; static constexpr auto spectrum_rate_hz = 50.0f; std::array dst;