Lines Matching +full:adc +full:- +full:mode
4 * SPDX-License-Identifier: Apache-2.0
9 #include <zephyr/dt-bindings/dt-util.h>
11 /* Operating Mode */
29 /* Conversion time for bus, shunt and temp in micro-seconds */
39 /* Averaging Mode */
49 /* Reset Mode */
53 /* Delay for initial ADC conversion in steps of 2 ms */
65 * @param rst_mode Reset mode.
66 * @param convdly Delay for initial ADC conversion in steps of 2 ms.
76 * @brief Macro for creating the INA237 ADC configuration value
78 * @param mode Operating mode.
82 * @param avg Averaging mode.
84 #define INA237_ADC_CONFIG(mode, \ argument
89 (((mode) << 12) | ((vbusct) << 9) | ((vshct) << 6) | ((vtct) << 3) | (avg))