mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
13 lines
554 B
Plaintext
13 lines
554 B
Plaintext
config HAL_WDT_USE_ROM_IMPL
|
|
bool "Use ROM implementation of WDT HAL driver"
|
|
depends on ESP_ROM_HAS_HAL_WDT
|
|
default y
|
|
help
|
|
Enable this flag to use HAL functions from ROM instead of ESP-IDF.
|
|
|
|
If keeping this as "n" in your project, you will have less free IRAM.
|
|
If making this as "y" in your project, you will increase free IRAM,
|
|
but you will lose the possibility to debug this module, and some new
|
|
features will be added and bugs will be fixed in the IDF source
|
|
but cannot be synced to ROM.
|