AudioTools, ESP32 and PSRAM revisited
Arrays The best way to allocate an Array of data in the AudioTools is by using a Vector. E.g. Vector<int16_t> vector{100000}; is allocating a vector of 100’000 2 byte signed integers. RAM and PSRAM The ESP32 has a few hundred kilobytes of internal RAM, residing on the same die as Read more…