Files
snapclient/main/Kconfig.projbuild
CarlosDerSeher fae271186c Sync with sample stuffing (#69)
* upgrade to IDF v5.1.1
* add new synchronization implementation, use sample stuffing / removal to keep up sync
* use big DMA buffer for I2S and improve sync
* Add DAC TAS5805M as custom board
* add wifi credential reset
  o press reset button (nRESET pin) 3 times
    but wait about 1s between button presses
    the button press counter is reset 5s after boot
* Add support for PT8211 DAC (#78)
* upgrade ethernet interface to IDF v5 (#84)
* port official example of ethernet for IDF v5.x
* Fix cmake if guard for ethernet

Signed-off-by: Karl Osterseher <karli_o@gmx.at>
Co-authored-by: DerPicknicker <64746593+DerPicknicker@users.noreply.github.com>
Co-authored-by: whc2001 <ianwang0122@outlook.com>
2024-05-31 20:38:09 +02:00

48 lines
1.3 KiB
Plaintext

menu "Snapclient 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_NAME
string "snapclient name"
default "ESP32-Caster"
help
Name of the client to register the snapserver.
menu "HTTP Server Setting"
config WEB_PORT
int "User interface HTTP Server Port"
default 8000
help
HTTP server port to use.
endmenu
config USE_SAMPLE_INSERTION
bool "Use sample insertion"
default true
help
There are two syncronization implementations.
1. APLL tuning (ONLY use with DACs having MCLK input)
2. sample insertion (duplicates a sample now and then to keep up sync)
Both approaches have similar performance keeping clients in sync <= 500µs
endmenu