From c3a7510726731d9b0aefc01ea824bc98ae993eca Mon Sep 17 00:00:00 2001 From: Tomasz Duda Date: Sun, 5 May 2024 21:37:53 +0200 Subject: [PATCH] fix dfu --- esphome/components/dfu/dfu.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/esphome/components/dfu/dfu.cpp b/esphome/components/dfu/dfu.cpp index 76bf18c69c..2b3a019101 100644 --- a/esphome/components/dfu/dfu.cpp +++ b/esphome/components/dfu/dfu.cpp @@ -8,9 +8,8 @@ namespace dfu { volatile bool goto_dfu = false; -static const uint8_t DFU_DBL_RESET_MEM = 0x20007F7C; -const uint8_t DFU_DBL_RESET_MAGIC = 0x5A1AD5; // SALADS -uint32_t *dbl_reset_mem = ((uint32_t *) DFU_DBL_RESET_MEM); +static const uint32_t DFU_DBL_RESET_MAGIC = 0x5A1AD5; // SALADS +static uint32_t *dbl_reset_mem = ((uint32_t *) 0x20007F7C); #define DEVICE_AND_COMMA(node_id) DEVICE_DT_GET(node_id),