Fix capture mode baseband_fs value.

This commit is contained in:
Jared Boone 2016-04-21 11:54:39 -07:00
parent 09a39f780a
commit 28ca45326d

View File

@ -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<complex16_t, 512> dst;