swm050: wdt: doxygen polish

This commit is contained in:
Karl Palsson
2019-11-28 11:43:01 +00:00
parent 47b59e2df4
commit da0c6a6724
3 changed files with 70 additions and 78 deletions

View File

@@ -34,8 +34,8 @@
/** @defgroup sysctl_bit_defs SYSCTL register bit definitions
@{*/
#define SYSCTL_SYS_CFG_2_SLEEP (1 << 4)
#define SYSCTL_SYS_CFG_1_TIMERSE0 (1 << 6)
#define SYSCTL_SYS_CFG_1_TIMERSE1 (1 << 17)
#define SYSCTL_SYS_CFG_1_TIMERSE0 (1 << 6)
#define SYSCTL_SYS_CFG_1_WDT (1 << 4)
/**@}*/

View File

@@ -35,9 +35,9 @@
/** @defgroup wdt_modes Watchdog mode
@{*/
enum wdt_modes {
/* On timeout, reset the system */
/** On timeout, reset the system */
WDT_MODE_RESET,
/* On timeout, generate an interrupt. If another timeout occurs without
/** On timeout, generate an interrupt. If another timeout (time2) occurs without
the interrupt being cleared, reset the system. */
WDT_MODE_INT
};