Skip to content

Commit 47197c7

Browse files
committed
tests: drivers: gpio: gpio_event: enable for LS05
Add support for LS05. Signed-off-by: Piotr Kosycarz <[email protected]>
1 parent d1c80f2 commit 47197c7

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
/ {
8+
/* Test requirements:
9+
* No other driver on out-gpios[n]
10+
*/
11+
zephyr,user {
12+
out-gpios = <&gpio0 4 GPIO_ACTIVE_HIGH>, <&gpio1 10 GPIO_ACTIVE_HIGH>;
13+
};
14+
};
15+
16+
&gpio0 {
17+
status = "okay";
18+
};
19+
20+
&gpio1 {
21+
status = "okay";
22+
};
23+
24+
/* Enable interrupt from GPIO P1 events. */
25+
&gpiote20 {
26+
status = "okay";
27+
};
28+
29+
/* Enable interrupt from GPIO P0 events. */
30+
&gpiote30 {
31+
status = "okay";
32+
};

tests/drivers/gpio/gpio_event/testcase.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ tests:
1313
platform_allow:
1414
- nrf54l15dk/nrf54l15/cpuapp
1515
- nrf54lm20dk/nrf54lm20a/cpuapp
16+
- nrf54ls05dk/nrf54ls05b/cpuapp
17+
- [email protected]/nrf54ls05b/cpuapp
1618
- nrf54lv10dk/nrf54lv10a/cpuapp
1719
integration_platforms:
1820
- nrf54l15dk/nrf54l15/cpuapp

0 commit comments

Comments
 (0)