mirror of
https://github.com/esphome/esphome.git
synced 2024-11-27 09:18:00 +01:00
adjust sdkconfig settings
This commit is contained in:
parent
be4ab64587
commit
3c9b7e4513
1 changed files with 4 additions and 1 deletions
|
@ -242,7 +242,7 @@ async def to_code(config):
|
|||
esp32.add_idf_sdkconfig_option("CONFIG_TCP_SYNMAXRTX", 6)
|
||||
esp32.add_idf_sdkconfig_option("CONFIG_TCP_MSS", 1436)
|
||||
esp32.add_idf_sdkconfig_option("CONFIG_TCP_MSL", 60000)
|
||||
esp32.add_idf_sdkconfig_option("CONFIG_TCP_SND_BUF_DEFAULT", 5840)
|
||||
esp32.add_idf_sdkconfig_option("CONFIG_TCP_SND_BUF_DEFAULT", 65535)
|
||||
esp32.add_idf_sdkconfig_option(
|
||||
"CONFIG_TCP_WND_DEFAULT", 65535
|
||||
) # Adjusted from referenced settings to avoid compilation error
|
||||
|
@ -253,6 +253,9 @@ async def to_code(config):
|
|||
esp32.add_idf_sdkconfig_option("CONFIG_TCP_RCV_SCALE", 3)
|
||||
esp32.add_idf_sdkconfig_option("CONFIG_LWIP_TCPIP_RECVMBOX_SIZE", 512)
|
||||
|
||||
# Allocate wifi buffers in PSRAM
|
||||
esp32.add_idf_sdkconfig_option("CONFIG_SPIRAM_TRY_ALLOCATE_WIFI_LWIP", True)
|
||||
|
||||
var = cg.new_Pvariable(config[CONF_ID])
|
||||
await cg.register_component(var, config)
|
||||
await media_player.register_media_player(var, config)
|
||||
|
|
Loading…
Reference in a new issue