Explorar el Código

Allow AudioChunkManager to use PSRAM stack - release

philippe44 hace 2 años
padre
commit
f6f2f612a1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      components/spotify/cspot/src/AudioChunkManager.cpp

+ 1 - 1
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<std::shared_ptr<AudioChunk>>();
     startTask();
 }