|
@@ -21,6 +21,8 @@ menu "Squeezelite-ESP32"
|
|
|
help
|
|
|
Set logging level info|debug|sdebug
|
|
|
endmenu
|
|
|
+ config AMP_LOCKED
|
|
|
+ bool
|
|
|
config JACK_LOCKED
|
|
|
bool
|
|
|
config BAT_LOCKED
|
|
@@ -53,7 +55,13 @@ menu "Squeezelite-ESP32"
|
|
|
bool "Generic I2S & Bluetooth"
|
|
|
config TWATCH2020
|
|
|
bool "T-WATCH2020 by LilyGo"
|
|
|
- select I2C_LOCKED
|
|
|
+ select I2C_LOCKED
|
|
|
+ config MUSE
|
|
|
+ bool "Muse"
|
|
|
+ select JACK_LOCKED
|
|
|
+ select BAT_LOCKED
|
|
|
+ select I2C_LOCKED
|
|
|
+ select AMP_LOCKED
|
|
|
endchoice
|
|
|
config RELEASE_API
|
|
|
string "Software update URL"
|
|
@@ -71,11 +79,13 @@ menu "Squeezelite-ESP32"
|
|
|
string
|
|
|
default "SqueezeAMP" if SQUEEZEAMP
|
|
|
default "Squeezelite-TWATCH" if TWATCH2020
|
|
|
+ default "Muse" if MUSE
|
|
|
default "Squeezelite-ESP32"
|
|
|
config FW_PLATFORM_NAME
|
|
|
string
|
|
|
default "SqueezeAmp" if SQUEEZEAMP
|
|
|
default "TWATCH" if TWATCH2020
|
|
|
+ default "Muse" if MUSE
|
|
|
default "ESP32"
|
|
|
# AGGREGATES - begin
|
|
|
# these parameters are "aggregates" that take precedence. They must have a default value
|
|
@@ -83,6 +93,7 @@ menu "Squeezelite-ESP32"
|
|
|
string
|
|
|
default "model=TAS57xx,bck=33,ws=25,do=32,sda=27,scl=26,mute=14:0" if SQUEEZEAMP
|
|
|
default "model=I2S,bck=26,ws=25,do=33,i2c=53,sda=21,scl=22" if TWATCH2020
|
|
|
+ default "model=I2S,bck=5,ws=25,do=26,di=35,i2c=16,sda=18,scl=23,mck" if MUSE
|
|
|
default ""
|
|
|
config SPDIF_CONFIG
|
|
|
string
|
|
@@ -93,7 +104,8 @@ menu "Squeezelite-ESP32"
|
|
|
default ""
|
|
|
config SPI_CONFIG
|
|
|
string
|
|
|
- default "dc=27,data=19,clk=18" if TWATCH2020
|
|
|
+ default "dc=27,data=19,clk=18" if TWATCH2020
|
|
|
+ default "mosi=15,miso=2,clk=14" if MUSE
|
|
|
default ""
|
|
|
config DISPLAY_CONFIG
|
|
|
string
|
|
@@ -105,6 +117,7 @@ menu "Squeezelite-ESP32"
|
|
|
config DAC_CONTROLSET
|
|
|
string
|
|
|
default "{ \"init\": [ {\"reg\":41, \"val\":128}, {\"reg\":18, \"val\":255} ], \"poweron\": [ {\"reg\":18, \"val\":64, \"mode\":\"or\"} ], \"poweroff\": [ {\"reg\":18, \"val\":191, \"mode\":\"and\"} ] }" if TWATCH2020
|
|
|
+ default "{\"init\":[ {\"reg\":0,\"val\":128}, {\"reg\":0,\"val\":0}, {\"reg\":25,\"val\":4}, {\"reg\":1,\"val\":80}, {\"reg\":2,\"val\":0}, {\"reg\":8,\"val\":0}, {\"reg\":4,\"val\":192}, {\"reg\":0,\"val\":18}, {\"reg\":1,\"val\":0}, {\"reg\":23,\"val\":24}, {\"reg\":24,\"val\":2}, {\"reg\":38,\"val\":9}, {\"reg\":39,\"val\":144}, {\"reg\":42,\"val\":144}, {\"reg\":43,\"val\":128}, {\"reg\":45,\"val\":128}, {\"reg\":27,\"val\":0}, {\"reg\":26,\"val\":0}, {\"reg\":2,\"val\":240}, {\"reg\":2,\"val\":0}, {\"reg\":29,\"val\":28}, {\"reg\":4,\"val\":48}, {\"reg\":25,\"val\":0} ]}" if MUSE
|
|
|
default ""
|
|
|
# AGGREGATES - end
|
|
|
endmenu
|
|
@@ -308,7 +321,7 @@ menu "Squeezelite-ESP32"
|
|
|
endmenu
|
|
|
|
|
|
menu "Various I/O"
|
|
|
- visible if !TWATCH2020
|
|
|
+ visible if !TWATCH2020 && !MUSE
|
|
|
config I2C_CONFIG
|
|
|
string "I2C system configuration"
|
|
|
default ""
|
|
@@ -343,17 +356,18 @@ menu "Squeezelite-ESP32"
|
|
|
model=<model>[,addr=<addr>][,base=<100..N>][,count=<0..32>][,intr=<gpio>][,port=dac|system]
|
|
|
endmenu
|
|
|
menu "LED configuration"
|
|
|
- visible if !SQUEEZEAMP && !TWATCH2020
|
|
|
+ visible if !SQUEEZEAMP && !TWATCH2020 && !MUSE
|
|
|
config LED_GREEN_GPIO
|
|
|
int "Green led GPIO"
|
|
|
- default 12 if SQUEEZEAMP
|
|
|
+ default 12 if SQUEEZEAMP
|
|
|
+ default 22 if MUSE
|
|
|
default -1
|
|
|
help
|
|
|
Set to -1 for no LED
|
|
|
config LED_GREEN_GPIO_LEVEL
|
|
|
int "Green led ON level"
|
|
|
depends on LED_GREEN_GPIO != -1
|
|
|
- default 0 if SQUEEZEAMP
|
|
|
+ default 0 if SQUEEZEAMP || MUSE
|
|
|
default 1
|
|
|
config LED_RED_GPIO
|
|
|
int "Red led GPIO"
|
|
@@ -368,10 +382,10 @@ menu "Squeezelite-ESP32"
|
|
|
default 1
|
|
|
endmenu
|
|
|
menu "Audio JACK"
|
|
|
- visible if !SQUEEZEAMP && !TWATCH2020
|
|
|
+ visible if !SQUEEZEAMP && !TWATCH2020 && !MUSE
|
|
|
config JACK_GPIO
|
|
|
int "Jack insertion GPIO"
|
|
|
- default 34 if SQUEEZEAMP
|
|
|
+ default 34 if SQUEEZEAMP || MUSE
|
|
|
default -1
|
|
|
help
|
|
|
GPIO to detect speaker jack insertion. Set to -1 for no detection.
|
|
@@ -380,8 +394,21 @@ menu "Squeezelite-ESP32"
|
|
|
int "Level when inserted (0/1)"
|
|
|
default 0
|
|
|
endmenu
|
|
|
+ menu "Amplifier"
|
|
|
+ visible if !SQUEEZEAMP && !TWATCH2020 && !MUSE
|
|
|
+ config AMP_GPIO
|
|
|
+ int "Amplifier GPIO"
|
|
|
+ default 21 if MUSE
|
|
|
+ default -1
|
|
|
+ help
|
|
|
+ GPIO to switch on/off amplifier. Set to -1 for no amplifier.
|
|
|
+ config AMP_GPIO_LEVEL
|
|
|
+ depends on AMP_GPIO != -1
|
|
|
+ int "Active level(0/1)"
|
|
|
+ default 1
|
|
|
+ endmenu
|
|
|
menu "Speaker Fault"
|
|
|
- visible if !SQUEEZEAMP && !TWATCH2020
|
|
|
+ visible if !SQUEEZEAMP && !TWATCH2020 && !MUSE
|
|
|
config SPKFAULT_GPIO
|
|
|
int "Speaker fault GPIO"
|
|
|
default 2 if SQUEEZEAMP
|