1 /** 2 * 3 * @defgroup nrfx_power_config POWER peripheral driver configuration 4 * @{ 5 * @ingroup nrfx_power 6 */ 7 /** @brief Enable POWER driver 8 * 9 * Set to 1 to activate. 10 * 11 * @note This is an NRF_CONFIG macro. 12 */ 13 #define NRFX_POWER_ENABLED 14 15 /** @brief Interrupt priority 16 * 17 * Following options are available: 18 * - 0 - 0 (highest) 19 * - 1 - 1 20 * - 2 - 2 21 * - 3 - 3 22 * - 4 - 4 (Not applicable for nRF51) 23 * - 5 - 5 (Not applicable for nRF51) 24 * - 6 - 6 (Not applicable for nRF51) 25 * - 7 - 7 (Not applicable for nRF51) 26 * 27 * @note This is an NRF_CONFIG macro. 28 */ 29 #define NRFX_POWER_CONFIG_IRQ_PRIORITY 30 31 /** @brief The default configuration of main DCDC regulator 32 * 33 * This settings means only that components for DCDC regulator are installed and it can be enabled. 34 * 35 * Set to 1 to activate. 36 * 37 * @note This is an NRF_CONFIG macro. 38 */ 39 #define NRFX_POWER_CONFIG_DEFAULT_DCDCEN 40 41 /** @brief The default configuration of High Voltage DCDC regulator 42 * 43 * This settings means only that components for DCDC regulator are installed and it can be enabled. 44 * 45 * Set to 1 to activate. 46 * 47 * @note This is an NRF_CONFIG macro. 48 */ 49 #define NRFX_POWER_CONFIG_DEFAULT_DCDCENHV 50 51 52 /** @} */ 53