wdt_hal_init() function
Initialize one of the WDTs associated HAL context This function initializes one of the WDTs (MWDT0, MWDT1, or RWDT) hardware by doing the following: - Disables the WDT and all of its stages - Sets some registers with default values - Sets the WDTs source clock prescaler (not applicable to RWDT) - Optionally enables the level interrupt The HAL context is initialized by storing the type (i.e. MWDT or RWDT) of this WDT instance, and a pointer to the associated registers.
Arguments
wdt_inst
Which WDT instance to initialize (MWDT0, MWDT1, or RWDT)
prescaler
MWDT source clock prescaler. Unused for RWDT
enable_intr
True to enable level interrupt. False to disable
Notes
Although the WDTs on the ESP32 have an edge interrupt, this HAL does not utilize it and will always disables it. RWDT does not have a prescaler. Its tick rate is equal to the frequency of its source clock (RTC slow clock).