diff --git a/esp-hal/CHANGELOG.md b/esp-hal/CHANGELOG.md index 87913e35488..4315cb68fbe 100644 --- a/esp-hal/CHANGELOG.md +++ b/esp-hal/CHANGELOG.md @@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - TIMG: Fix interrupt handler setup (#1714) - Fix `sleep_light` for ESP32-C6 (#1720) +- ROM Functions: Fix address of `ets_update_cpu_frequency_rom` (#1722) ### Changed diff --git a/esp-hal/ld/esp32s3/rom-functions.x b/esp-hal/ld/esp32s3/rom-functions.x index a909027ab5b..531d3d4bc00 100644 --- a/esp-hal/ld/esp32s3/rom-functions.x +++ b/esp-hal/ld/esp32s3/rom-functions.x @@ -1,5 +1,5 @@ PROVIDE(ets_delay_us = 0x40000600); -PROVIDE(ets_update_cpu_frequency_rom = 0x40043164); +PROVIDE(ets_update_cpu_frequency_rom = 0x40001a4c); PROVIDE(rom_i2c_writeReg = 0x40005d60); PROVIDE(rom_i2c_writeReg_Mask = 0x40005d6c); PROVIDE(rtc_get_reset_reason = 0x4000057c);