Line data Source code
1 0 : /*
2 : * Copyright 2025 NXP
3 : *
4 : * SPDX-License-Identifier: Apache-2.0
5 : */
6 :
7 : #ifndef ZEPHYR_INCLUDE_DT_BINDINGS_OPAMP_OPAMP_H_
8 : #define ZEPHYR_INCLUDE_DT_BINDINGS_OPAMP_OPAMP_H_
9 :
10 : /**
11 : * @brief Enumerations for opamp functional mode.
12 : */
13 1 : enum opamp_functional_mode {
14 : /** Differential amplifier mode */
15 : OPAMP_DIFFERENTIAL_MODE = 0,
16 : /** Inverting amplifier mode */
17 : OPAMP_INVERTING_MODE,
18 : /** Non-inverting amplifier mode */
19 : OPAMP_NON_INVERTING_MODE,
20 : /** Follower mode */
21 : OPAMP_FOLLOWER_MODE,
22 : };
23 :
24 : #endif /* ZEPHYR_INCLUDE_DT_BINDINGS_OPAMP_OPAMP_H_ */
|