File tree Expand file tree Collapse file tree 4 files changed +42
-0
lines changed
tests/drivers/gpio/gpio_basic_api Expand file tree Collapse file tree 4 files changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2025 NXP
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+ /* loopback with arduino header D12 and D13
8
+ * To test this sample, connect J2_5 to J2_6 on frdm_mcxw23
9
+ */
10
+
11
+ / {
12
+ resources {
13
+ compatible = "test-gpio-basic-api";
14
+ status = "okay";
15
+ out-gpios = <&arduino_header ARDUINO_HEADER_R3_D12 (GPIO_ACTIVE_HIGH | GPIO_PUSH_PULL | GPIO_PULL_UP)>;
16
+ in-gpios = <&arduino_header ARDUINO_HEADER_R3_D13 (GPIO_ACTIVE_HIGH | GPIO_PUSH_PULL | GPIO_PULL_UP)>;
17
+ };
18
+ };
Original file line number Diff line number Diff line change
1
+ CONFIG_SKIP_PULL_TEST=y
2
+ CONFIG_READ_DELAY=10
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2025 NXP
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+ /* loopback with arduino header D10 and D13
8
+ * To test this sample, connect J24_3 to J24_6 on mcxw23_evk
9
+ */
10
+
11
+ / {
12
+ resources {
13
+ compatible = "test-gpio-basic-api";
14
+ status = "okay";
15
+ out-gpios = <&arduino_header ARDUINO_HEADER_R3_D13 (GPIO_ACTIVE_HIGH | GPIO_PUSH_PULL | GPIO_PULL_UP)>;
16
+ in-gpios = <&arduino_header ARDUINO_HEADER_R3_D10 (GPIO_ACTIVE_HIGH | GPIO_PUSH_PULL | GPIO_PULL_UP)>;
17
+ };
18
+ };
Original file line number Diff line number Diff line change 66
66
- mimxrt1060_evk@C/mimxrt1062/qspi
67
67
- lpcxpresso55s69/lpc55s69/cpu0
68
68
- lpcxpresso55s36
69
+ - frdm_mcxw23
70
+ - mcxw23_evk
69
71
drivers.gpio.2pin_arduino_customized :
70
72
min_flash : 34
71
73
depends_on :
85
87
- nucleo_h745zi_q/stm32h745xx/m7
86
88
- nucleo_h745zi_q/stm32h745xx/m4
87
89
- stm32mp257f_ev1/stm32mp257fxx/m33
90
+ - frdm_mcxw23
91
+ - mcxw23_evk
88
92
integration_platforms :
89
93
- mimxrt595_evk/mimxrt595s/cm33
90
94
drivers.gpio.st_2pin_arduino :
You can’t perform that action at this time.
0 commit comments