Files
snapclient/main/Kconfig.projbuild
Carlos 15b4baba28 - merge with original master from jorgen
- minimize RAM usage of all components
- use both IRAM and DRAM in player component so we can buffer up to 1s on modules without SPI RAM
- support fragemented pcm chunks so we can use all available RAM if there isn't a big enough block available but still enough HEAP
- reinclude all components from jorgen's master branch
- add custom i2s driver to get a precise timing of initial sync
- change wrong usage of esp_timer for latency measurement of snapcast protocol
- add player component
2021-08-19 21:57:16 +02:00

44 lines
1.2 KiB
Plaintext

menu "Snapcast Configuration"
config SNAPSERVER_USE_MDNS
bool "Use mDNS"
default true
help
Use mDNS to look for the snapserver to connect to on the local network.
config SNAPSERVER_HOST
string "Snapserver host"
default "192.168.1.158"
depends on !SNAPSERVER_USE_MDNS
help
Host (ip or name) of snapserver to connect to if mDNS is disabled or the mDNS resolution fails.
config SNAPSERVER_PORT
int "Snapserver port"
default 1704
depends on !SNAPSERVER_USE_MDNS
help
Port of the snapserver to connect to.
config SNAPCLIENT_BUFF_LEN
int "snapcast protocol buffer len"
default 4000
help
Size of the snapclient protocol messages buffer (in bytes).
config SNAPCLIENT_NAME
string "snapclient name"
default "esp-snapclient"
help
Name of the client to register the snapserver.
endmenu
menu "SNTP Configuration"
config SNPACLIENT_SNTP_ENABLE
bool "Enable SNTP"
default true
help
Enable the setup of RTC time using the SNTP protocol.
endmenu