Skip to content

Commit fb1d730

Browse files
nordic-seglkartben
authored andcommitted
tests: drivers: gpio: gpio_basic_api: Enable test on nRF54L* cpuflpr
Add overlay required to run gpio_basic_api test on - nrf54l09pdk/nrf54l09/cpuflpr and - nrf54l20pdk/nrf54l20/cpuflpr. Signed-off-by: Sebastian Głąb <[email protected]>
1 parent 9bb5e2f commit fb1d730

6 files changed

+58
-30
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/*
2+
* Copyright (c) 2024 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/ {
8+
resources {
9+
compatible = "test-gpio-basic-api";
10+
out-gpios = <&gpio1 10 0>;
11+
in-gpios = <&gpio1 11 0>;
12+
};
13+
};
14+
15+
&gpiote20 {
16+
status = "okay";
17+
};
18+
19+
&gpio1 {
20+
status = "okay";
21+
};

tests/drivers/gpio/gpio_basic_api/boards/nrf54l09pdk_nrf54l09_cpuapp.overlay

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,4 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
/ {
8-
resources {
9-
compatible = "test-gpio-basic-api";
10-
out-gpios = <&gpio1 10 0>;
11-
in-gpios = <&gpio1 11 0>;
12-
};
13-
};
14-
15-
&gpiote20 {
16-
status = "okay";
17-
};
18-
19-
&gpio1 {
20-
status = "okay";
21-
};
7+
#include "nrf54l09pdk_nrf54l09_common.overlay"
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
#include "nrf54l09pdk_nrf54l09_common.overlay"
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/*
2+
* Copyright (c) 2024 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/ {
8+
resources {
9+
compatible = "test-gpio-basic-api";
10+
out-gpios = <&gpio1 10 0>;
11+
in-gpios = <&gpio1 11 0>;
12+
};
13+
};
14+
15+
&gpiote20 {
16+
status = "okay";
17+
};
18+
19+
&gpio1 {
20+
status = "okay";
21+
};

tests/drivers/gpio/gpio_basic_api/boards/nrf54l20pdk_nrf54l20_cpuapp.overlay

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,4 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
/ {
8-
resources {
9-
compatible = "test-gpio-basic-api";
10-
out-gpios = <&gpio1 10 0>;
11-
in-gpios = <&gpio1 11 0>;
12-
};
13-
};
14-
15-
&gpiote20 {
16-
status = "okay";
17-
};
18-
19-
&gpio1 {
20-
status = "okay";
21-
};
7+
#include "nrf54l20pdk_nrf54l20_common.overlay"
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
#include "nrf54l20pdk_nrf54l20_common.overlay"

0 commit comments

Comments
 (0)