1 /** 2 * 3 * @defgroup nrfx_wdt_config WDT peripheral driver configuration 4 * @{ 5 * @ingroup nrfx_wdt 6 */ 7 /** @brief Enable WDT driver 8 * 9 * Set to 1 to activate. 10 * 11 * @note This is an NRF_CONFIG macro. 12 */ 13 #define NRFX_WDT_ENABLED 14 15 /** @brief Remove WDT IRQ handling from WDT driver 16 * 17 * Following options are available: 18 * - 0 - Include WDT IRQ handling 19 * - 1 - Remove WDT IRQ handling 20 * 21 * @note This is an NRF_CONFIG macro. 22 */ 23 #define NRFX_WDT_CONFIG_NO_IRQ 24 25 /** @brief Interrupt priority 26 * 27 * Following options are available: 28 * - 0 - 0 (highest) 29 * - 1 - 1 30 * - 2 - 2 31 * - 3 - 3 32 * - 4 - 4 (Not applicable for nRF51) 33 * - 5 - 5 (Not applicable for nRF51) 34 * - 6 - 6 (Not applicable for nRF51) 35 * - 7 - 7 (Not applicable for nRF51) 36 * 37 * @note This is an NRF_CONFIG macro. 38 */ 39 #define NRFX_WDT_CONFIG_IRQ_PRIORITY 40 41 /** @brief Enables logging in the module. 42 * 43 * Set to 1 to activate. 44 * 45 * @note This is an NRF_CONFIG macro. 46 */ 47 #define NRFX_WDT_CONFIG_LOG_ENABLED 48 49 /** @brief Default Severity level 50 * 51 * Following options are available: 52 * - 0 - Off 53 * - 1 - Error 54 * - 2 - Warning 55 * - 3 - Info 56 * - 4 - Debug 57 * 58 * @note This is an NRF_CONFIG macro. 59 */ 60 #define NRFX_WDT_CONFIG_LOG_LEVEL 61 62 /** @brief ANSI escape code prefix. 63 * 64 * Following options are available: 65 * - 0 - Default 66 * - 1 - Black 67 * - 2 - Red 68 * - 3 - Green 69 * - 4 - Yellow 70 * - 5 - Blue 71 * - 6 - Magenta 72 * - 7 - Cyan 73 * - 8 - White 74 * 75 * @note This is an NRF_CONFIG macro. 76 */ 77 #define NRFX_WDT_CONFIG_INFO_COLOR 78 79 /** @brief ANSI escape code prefix. 80 * 81 * Following options are available: 82 * - 0 - Default 83 * - 1 - Black 84 * - 2 - Red 85 * - 3 - Green 86 * - 4 - Yellow 87 * - 5 - Blue 88 * - 6 - Magenta 89 * - 7 - Cyan 90 * - 8 - White 91 * 92 * @note This is an NRF_CONFIG macro. 93 */ 94 #define NRFX_WDT_CONFIG_DEBUG_COLOR 95 96 97 98 /** @} */ 99