1
0
mirror of https://github.com/esphome/esphome.git synced 2025-04-05 18:30:28 +01:00
This commit is contained in:
Tomasz Duda 2024-05-05 21:37:53 +02:00
parent 54368a0678
commit c3a7510726

View File

@ -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),