From fa482239a9c1943ec2a14b92c38bc32c2276d905 Mon Sep 17 00:00:00 2001 From: wuzhenghui Date: Wed, 20 Apr 2022 14:38:02 +0800 Subject: [PATCH] esp32s3: use wdt/systimer hal rom implement as default for esp32s3 --- components/hal/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/hal/Kconfig b/components/hal/Kconfig index 3ab4f83eba..d414181d7b 100644 --- a/components/hal/Kconfig +++ b/components/hal/Kconfig @@ -67,7 +67,7 @@ menu "Hardware Abstraction Layer (HAL) and Low Level (LL)" config HAL_SYSTIMER_HAS_ROM_IMPL bool - default y if IDF_TARGET_ESP32C2 + default y if IDF_TARGET_ESP32C2 # TODO: IDF-4917 config HAL_SYSTIMER_ROM_IMPL bool "Use systimer HAL implementation in ROM" @@ -84,7 +84,7 @@ menu "Hardware Abstraction Layer (HAL) and Low Level (LL)" config HAL_WDT_HAS_ROM_IMPL bool - default y if IDF_TARGET_ESP32C2 + default y if IDF_TARGET_ESP32C2 || IDF_TARGET_ESP32S3 config HAL_WDT_ROM_IMPL bool "Use WDT HAL implementation in ROM"