1/* 2 * Copyright (c) 2025 Microchip Technology Inc. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6#include <zephyr/dt-bindings/sensor/mtch9010.h> 7 8&sercom1 { 9 status = "okay"; 10 compatible = "atmel,sam0-uart"; 11 current-speed = <38400>; 12 rxpo = <3>; 13 txpo = <1>; 14 15 pinctrl-0 = <&sercom1_default>; 16 pinctrl-names = "default"; 17 18 my9010: mtch9010 { 19 compatible = "microchip,mtch9010"; 20 21 uart-config-enable; 22 operating-mode = "MTCH9010_CAPACITIVE"; 23 extended-output-enable; 24 extended-output-format = "MTCH9010_OUTPUT_FORMAT_BOTH"; 25 detect-value = <100>; 26 27 wake-gpios = <&portb 14 GPIO_ACTIVE_LOW>; 28 output-gpios = <&portb 15 GPIO_ACTIVE_HIGH>; 29 heartbeat-gpios = <&porta 20 GPIO_ACTIVE_HIGH>; 30 }; 31}; 32