You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
600 B
33 lines
600 B
/* |
|
* Copyright (c) 2024 Ambiq Micro Inc. |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
/ { |
|
zephyr,user { |
|
io-channels = <&adc0 4>, <&adc0 7>; |
|
}; |
|
}; |
|
|
|
&adc0 { |
|
status = "okay"; |
|
dma-mode; |
|
#address-cells = <1>; |
|
#size-cells = <0>; |
|
|
|
channel@4 { |
|
reg = <4>; |
|
zephyr,gain = "ADC_GAIN_1"; |
|
zephyr,reference = "ADC_REF_INTERNAL"; |
|
zephyr,acquisition-time = <ADC_ACQ_TIME_DEFAULT>; |
|
zephyr,resolution = <14>; |
|
}; |
|
|
|
channel@7 { |
|
reg = <7>; |
|
zephyr,gain = "ADC_GAIN_1"; |
|
zephyr,reference = "ADC_REF_INTERNAL"; |
|
zephyr,acquisition-time = <ADC_ACQ_TIME_DEFAULT>; |
|
zephyr,resolution = <14>; |
|
}; |
|
};
|
|
|