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 clk-gpios = <&arduino_header 10 GPIO_ACTIVE_HIGH>; /* D4 */ 12 dio-gpios = <&arduino_header 8 GPIO_PULL_UP>; /* D2 */ 13 dout-gpios = <&arduino_header 9 GPIO_ACTIVE_HIGH>; /* D3 */ 14 dnoe-gpios = <&arduino_header 12 GPIO_ACTIVE_HIGH>; /* D6 */ 15 noe-gpios = <&arduino_header 11 GPIO_ACTIVE_HIGH>; /* D5 */ 16 reset-gpios = <&arduino_header 13 GPIO_ACTIVE_HIGH>; /* D7 */ 17 port-write-cycles = <2>; 18 }; 19}; 20