1 /* 2 * Copyright (c) 2023 STMicroelectronics 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_INCLUDE_DT_BINDINGS_POWER_STM32_PWR_H_ 8 #define ZEPHYR_INCLUDE_DT_BINDINGS_POWER_STM32_PWR_H_ 9 10 /** 11 * @brief STM32 power controller 12 * @{ 13 */ 14 15 /** 16 * @name flags for wake-up pins sources 17 * @{ 18 */ 19 20 #define STM32_PWR_WKUP_PIN_SRC_0 0 21 #define STM32_PWR_WKUP_PIN_SRC_1 1 22 #define STM32_PWR_WKUP_PIN_SRC_2 (1 << 2) 23 24 /** @} */ 25 26 /** @} */ 27 28 #endif /* ZEPHYR_INCLUDE_DT_BINDINGS_POWER_STM32_PWR_H_ */ 29