From aec0be356faba48cb0c206da4e9f78aa0dc62526 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 11 Apr 2026 23:16:06 -1000 Subject: [PATCH] [esp8266] Remove unused USE_FAST_MILLIS_ACCUMULATOR define --- esphome/components/esp8266/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/esphome/components/esp8266/__init__.py b/esphome/components/esp8266/__init__.py index f8c37e3e94..34540bd48d 100644 --- a/esphome/components/esp8266/__init__.py +++ b/esphome/components/esp8266/__init__.py @@ -318,7 +318,6 @@ async def to_code(config): # handlers) use our fast accumulator instead of the expensive 4x 64-bit multiply # implementation in the Arduino ESP8266 core. cg.add_build_flag("-Wl,--wrap=millis") - cg.add_define("USE_FAST_MILLIS_ACCUMULATOR") cg.add_platformio_option("board_build.flash_mode", config[CONF_BOARD_FLASH_MODE])