From f6f2f612a17e2cfe9847ef7e75c591beaf68da5a Mon Sep 17 00:00:00 2001 From: philippe44 Date: Mon, 12 Sep 2022 19:45:46 -0700 Subject: [PATCH] Allow AudioChunkManager to use PSRAM stack - release --- components/spotify/cspot/src/AudioChunkManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/spotify/cspot/src/AudioChunkManager.cpp b/components/spotify/cspot/src/AudioChunkManager.cpp index 827d2a32..6d69ba78 100644 --- a/components/spotify/cspot/src/AudioChunkManager.cpp +++ b/components/spotify/cspot/src/AudioChunkManager.cpp @@ -3,7 +3,7 @@ #include "Logger.h" AudioChunkManager::AudioChunkManager() - : bell::Task("AudioChunkManager", 4 * 1024, -1, 0) { + : bell::Task("AudioChunkManager", 4 * 1024, -1, 1) { this->chunks = std::vector>(); startTask(); }