1/* 2 * Copyright (c) 2021 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/* NOTE: this feature is only available in nRF9160 DK v0.14.0 or later. */ 8 9&pcal6408a { 10 status = "okay"; 11}; 12 13&button0 { 14 gpios = <&pcal6408a 0 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>; 15}; 16 17&button1 { 18 gpios = <&pcal6408a 1 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>; 19}; 20 21&button2 { 22 gpios = <&pcal6408a 2 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>; 23}; 24 25&button3 { 26 gpios = <&pcal6408a 3 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>; 27}; 28