You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
got myself an adafruit "qt py -S2" with tinyUF2 bootloader. So I wanted to get that working. And it does work :-).
FFT time = 10ms (instead of 2ms on classic ESP32) is a very good result, also virtual USB runs much better now.
// there are two things in these MCUs that could lead to problems with audio processing:
28
28
// * no floating point hardware (FPU) support - FFT uses float calculations. If done in software, a strong slow-down can be expected (between 8x and 20x)
29
29
// * single core, so FFT task might slow down other things like LED updates
30
30
#if !defined(SOC_I2S_NUM) || (SOC_I2S_NUM < 1)
31
-
#error This audio reactive usermod does not support ESP32-C2, ESP32-C3 or ESP32-S2.
31
+
#error This audio reactive usermod does not support ESP32-C2or ESP32-C3.
32
32
#else
33
-
#warning This audio reactive usermod does not support ESP32-C2, ESP32-C3 or ESP32-S2.
33
+
#warning This audio reactive usermod does not support ESP32-C2 and ESP32-C3.
0 commit comments