Line data Source code
1 0 : /*
2 : * Copyright (c) 2022 Nordic Semiconductor ASA
3 : * SPDX-License-Identifier: Apache-2.0
4 : */
5 :
6 : #ifndef ZEPHYR_INCLUDE_DRIVERS_REGULATOR_PCA9420_H_
7 : #define ZEPHYR_INCLUDE_DRIVERS_REGULATOR_PCA9420_H_
8 :
9 : #ifdef __cplusplus
10 : extern "C" {
11 : #endif
12 :
13 : /**
14 : * @defgroup regulator_parent_pca9420 PCA9420 Utilities.
15 : * @ingroup regulator_parent_interface
16 : * @{
17 : */
18 :
19 : /** @brief DVS state 'MODE0' */
20 1 : #define REGULATOR_PCA9420_DVS_MODE0 0
21 : /** @brief DVS state 'MODE1' */
22 1 : #define REGULATOR_PCA9420_DVS_MODE1 1
23 : /** @brief DVS state 'MODE2' */
24 1 : #define REGULATOR_PCA9420_DVS_MODE2 2
25 : /** @brief DVS state 'MODE3' */
26 1 : #define REGULATOR_PCA9420_DVS_MODE3 3
27 :
28 : /** @} */
29 :
30 : #ifdef __cplusplus
31 : }
32 : #endif
33 :
34 : #endif /* ZEPHYR_INCLUDE_DRIVERS_REGULATOR_PCA9420_H_ */
|