1/*
2 * Copyright (c) 2023 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	dp0 {
9		compatible = "zephyr,swdp-gpio";
10		status = "okay";
11
12		clk-gpios = <&arduino_header 10 GPIO_ACTIVE_HIGH>;	/* D4 */
13		noe-gpios = <&arduino_header 9 GPIO_ACTIVE_HIGH>;	/* D3 */
14		dio-gpios = <&arduino_header 8 GPIO_PULL_UP>;		/* D2 */
15		port-write-cycles = <2>;
16	};
17};
18