Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ sysbuild: true
ram: 46
flash: 46
supported:
- counter
- gpio
- i2c
- pwm
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ ram: 46
flash: 48
supported:
- gpio
- counter
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/* SPDX-License-Identifier: Apache-2.0 */

Check warning on line 1 in tests/drivers/counter/counter_basic_api/boards/nrf54h20dk_nrf54h20_cpuflpr_xip.overlay

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

Copyright missing

tests/drivers/counter/counter_basic_api/boards/nrf54h20dk_nrf54h20_cpuflpr_xip.overlay:1 File has no SPDX-FileCopyrightText header, consider adding one.

#include "nrf54h20dk_nrf54h20_common.dtsi"

/* FLPR does not have interrupts for slow peripherals. */
&timer130 {
status = "disabled";
};

&timer131 {
status = "disabled";
};

&timer132 {
status = "disabled";
};

&timer133 {
status = "disabled";
};

&timer134 {
status = "disabled";
};

&timer135 {
status = "disabled";
};

&timer136 {
status = "disabled";
};

&timer137 {
status = "disabled";
};

&rtc130 {
status = "disabled";
};

&rtc131 {
status = "disabled";
};
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
/* SPDX-License-Identifier: Apache-2.0 */

Check warning on line 1 in tests/drivers/counter/counter_basic_api/sysbuild/vpr_launcher/boards/nrf54h20dk_nrf54h20_cpuapp.overlay

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

Copyright missing

tests/drivers/counter/counter_basic_api/sysbuild/vpr_launcher/boards/nrf54h20dk_nrf54h20_cpuapp.overlay:1 File has no SPDX-FileCopyrightText header, consider adding one.

&timer120 {
status = "reserved";
interrupt-parent = <&cpuflpr_clic>;
};

&timer121 {
status = "reserved";
interrupt-parent = <&cpuflpr_clic>;
};

&timer130 {
status = "reserved";
interrupt-parent = <&cpuppr_clic>;
Expand Down
Loading