[wifi] Disallow psram config with arduino (#9922)

This commit is contained in:
Clyde Stubbs 2025-07-27 17:57:37 +10:00 committed by GitHub
parent 14862904ac
commit a2ed209542
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,6 +6,7 @@ from esphome.components.esp32 import add_idf_sdkconfig_option, const, get_esp32_
from esphome.components.network import IPAddress from esphome.components.network import IPAddress
from esphome.config_helpers import filter_source_files_from_platform from esphome.config_helpers import filter_source_files_from_platform
import esphome.config_validation as cv import esphome.config_validation as cv
from esphome.config_validation import only_with_esp_idf
from esphome.const import ( from esphome.const import (
CONF_AP, CONF_AP,
CONF_BSSID, CONF_BSSID,
@ -336,7 +337,7 @@ CONFIG_SCHEMA = cv.All(
single=True single=True
), ),
cv.Optional(CONF_USE_PSRAM): cv.All( cv.Optional(CONF_USE_PSRAM): cv.All(
cv.requires_component("psram"), cv.boolean only_with_esp_idf, cv.requires_component("psram"), cv.boolean
), ),
} }
), ),