Skip to content

Commit a4367fd

Browse files
magp-nordicnordicjm
authored andcommitted
samples: zephyr: drivers: adc: fix test for nRF54LS05B
Fix test after integration of 8.73.0 MDK which decreased number of channels in nRF54LS05B SAADC from 8 to 4. Signed-off-by: Magdalena Pastula <[email protected]>
1 parent fe3571e commit a4367fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

samples/zephyr/drivers/adc/adc_dt/boards/nrf54ls05dk_nrf54ls05b_cpuapp.overlay

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/ {
88
zephyr,user {
9-
io-channels = <&adc 0>, <&adc 1>, <&adc 7>;
9+
io-channels = <&adc 0>, <&adc 1>, <&adc 3>;
1010
};
1111
};
1212

@@ -34,8 +34,8 @@
3434
zephyr,oversampling = <8>;
3535
};
3636

37-
channel@7 {
38-
reg = <7>;
37+
channel@3 {
38+
reg = <3>;
3939
zephyr,gain = "ADC_GAIN_1";
4040
zephyr,reference = "ADC_REF_INTERNAL";
4141
zephyr,acquisition-time = <ADC_ACQ_TIME_DEFAULT>;

0 commit comments

Comments
 (0)