WDT: Add support for XTAL32K Watchdog timer

This commit is contained in:
Marius Vikhammer
2021-08-30 11:30:12 +08:00
parent 375145ecdb
commit 4869b3cd4a
27 changed files with 697 additions and 9 deletions

View File

@@ -206,7 +206,8 @@ typedef enum {
typedef enum {
RTC_CAL_RTC_MUX = 0, //!< Currently selected RTC SLOW_CLK
RTC_CAL_8MD256 = 1, //!< Internal 8 MHz RC oscillator, divided by 256
RTC_CAL_32K_XTAL = 2 //!< External 32 kHz XTAL
RTC_CAL_32K_XTAL = 2, //!< External 32 kHz XTAL
RTC_CAL_INTERNAL_OSC = 3 //!< Internal 150 kHz oscillator
} rtc_cal_sel_t;
/**