update boards that can not use the common pins mimxrt102x reuse with ethernet mimxrt106x has external pull up lpcxpresso55s3x reuse with int add CONFIG_SKIP_PULL_TEST by default to be more general user can enable this test in customized case with select pin ST prefer to using D9 D10 pair to testing. Signed-off-by: Hake Huang <hake.huang@nxp.com>
16 lines
374 B
Text
16 lines
374 B
Text
/*
|
|
* Copyright (c) 2024 NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/* loopback with arduino header D2 and D3 */
|
|
|
|
/ {
|
|
resources {
|
|
compatible = "test-gpio-basic-api";
|
|
status = "okay";
|
|
out-gpios = <&arduino_header 8 (GPIO_ACTIVE_HIGH | GPIO_PUSH_PULL | GPIO_PULL_UP)>;
|
|
in-gpios = <&arduino_header 9 (GPIO_ACTIVE_HIGH | GPIO_PUSH_PULL | GPIO_PULL_UP)>;
|
|
};
|
|
};
|