Skip to content

Commit 12622ff

Browse files
mstasiaknordicnordic-piks
authored andcommitted
tests: drivers: adc: adjust nRF54LV10 DK to 4 SAADC channels
nRF54LV10A has 4 instead of 8 SAADC channels. Signed-off-by: Michał Stasiak <[email protected]>
1 parent d5b99f5 commit 12622ff

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

samples/zephyr/drivers/adc/adc_dt/boards/nrf54lv10dk_nrf54lv10a_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>;

samples/zephyr/drivers/adc/adc_sequence/boards/nrf54lv10dk_nrf54lv10a_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

@@ -40,8 +40,8 @@
4040
zephyr,oversampling = <8>;
4141
};
4242

43-
channel@7 {
44-
reg = <7>;
43+
channel@3 {
44+
reg = <3>;
4545
zephyr,gain = "ADC_GAIN_1";
4646
zephyr,reference = "ADC_REF_INTERNAL";
4747
zephyr,acquisition-time = <ADC_ACQ_TIME_DEFAULT>;

west.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ manifest:
6565
# https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/modules.html
6666
- name: zephyr
6767
repo-path: sdk-zephyr
68-
revision: pull/3273/head
68+
revision: 7d3bd3993600d433ab0653391aee2fa2b4ce3fda
6969
import:
7070
# In addition to the zephyr repository itself, NCS also
7171
# imports the contents of zephyr/west.yml at the above

0 commit comments

Comments
 (0)