2021-08-19 21:57:16 +02:00
|
|
|
# Config file for ESP32 DSP Processor
|
|
|
|
|
|
2021-08-26 22:08:17 +02:00
|
|
|
menu "ESP32 audio buffer and I2S config"
|
2021-08-19 21:57:16 +02:00
|
|
|
config USE_PSRAM
|
|
|
|
|
bool "Use PSRAM"
|
|
|
|
|
default true
|
|
|
|
|
depends on ESP32_SPIRAM_SUPPORT
|
|
|
|
|
help
|
2021-08-26 22:08:17 +02:00
|
|
|
Need wrover class modules with large SPRAM to have buffers >1s and chunks >20ms for Snapcast network delay
|
2021-08-19 21:57:16 +02:00
|
|
|
|
|
|
|
|
config USE_DSP_PROCESSOR
|
|
|
|
|
bool "enable signal processing on audio data"
|
|
|
|
|
default false
|
|
|
|
|
help
|
|
|
|
|
enable audio filtering before queueing it to player component
|
|
|
|
|
|
|
|
|
|
config USE_BIQUAD_ASM
|
|
|
|
|
bool "Use uptimized asm version of Biquad_f32"
|
|
|
|
|
default true
|
|
|
|
|
help
|
|
|
|
|
Asm version 2 x speed on ESP32 - not working on ESP32-S2
|
|
|
|
|
|
|
|
|
|
endmenu
|