1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-27 13:13:50 +00:00

[nrf52] fix missing bootloader (#10519)

This commit is contained in:
tomaszduda23
2025-09-01 19:30:02 +02:00
committed by GitHub
parent 6daeffcefd
commit 77dbe77117

View File

@@ -101,6 +101,7 @@ DeviceFirmwareUpdate = nrf52_ns.class_("DeviceFirmwareUpdate", cg.Component)
CONF_DFU = "dfu"
CONFIG_SCHEMA = cv.All(
_detect_bootloader,
set_core_data,
cv.Schema(
{
@@ -114,7 +115,6 @@ CONFIG_SCHEMA = cv.All(
),
}
),
_detect_bootloader,
)