From 5558ca60d7056930b9d9dbcc80ecc252e98c2ba1 Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Mon, 11 Apr 2016 11:00:47 -0700 Subject: [PATCH] Enlarge capture buffers -- inter-core FIFO, SDC --- firmware/application/audio_thread.hpp | 2 +- firmware/baseband/audio_output.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/application/audio_thread.hpp b/firmware/application/audio_thread.hpp index 2c5dcad8..99d82c18 100644 --- a/firmware/application/audio_thread.hpp +++ b/firmware/application/audio_thread.hpp @@ -86,7 +86,7 @@ public: } private: - static constexpr size_t write_size = 4096; + static constexpr size_t write_size = 16384; static constexpr eventmask_t EVT_FIFO_HIGHWATER = 1; const std::string file_path; diff --git a/firmware/baseband/audio_output.hpp b/firmware/baseband/audio_output.hpp index c935ed86..3837684a 100644 --- a/firmware/baseband/audio_output.hpp +++ b/firmware/baseband/audio_output.hpp @@ -54,7 +54,7 @@ private: IIRBiquadFilter deemph; FMSquelch squelch; - StreamInput stream { 13 }; + StreamInput stream { 14 }; AudioStatsCollector audio_stats;