17f2046821
Add current sense amplifier driver. Implements https://github.com/zephyrproject-rtos/zephyr/issues/60415 Co-authored-by: Marco Argiolas <marco.argiolas@ftpsolutions.com.au> Signed-off-by: Nick Ward <nix.ward@gmail.com>
14 lines
298 B
Plaintext
14 lines
298 B
Plaintext
# Current sense amplifier driver
|
|
#
|
|
# Copyright (c) 2023 FTP Technologies
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config CURRENT_AMP
|
|
bool "Current sense amplifier driver"
|
|
default y
|
|
depends on DT_HAS_CURRENT_SENSE_AMPLIFIER_ENABLED
|
|
depends on ADC
|
|
help
|
|
Enable current sense amplifier driver.
|