diff --git a/firmware/application/audio_thread.hpp b/firmware/application/audio_thread.hpp index 2893ca8e7..0d00b0438 100644 --- a/firmware/application/audio_thread.hpp +++ b/firmware/application/audio_thread.hpp @@ -71,6 +71,7 @@ public: } private: + static constexpr size_t write_size = 4096; const std::string file_path; File file; @@ -84,7 +85,7 @@ private: } void run() { - auto write_buffer = std::make_unique>(); + auto write_buffer = std::make_unique>(); if( !write_buffer ) { return; }