| /* | |
| * Copyright (c) 2020 Alexander Falb <fal3xx@gmail.com> | |
| * | |
| * SPDX-License-Identifier: Apache-2.0 | |
| */ | |
| / { | |
| chosen { | |
| zephyr,console = &sercom0; | |
| zephyr,shell-uart = &sercom0; | |
| }; | |
| }; | |
| &sercom0 { | |
| compatible = "atmel,sam0-uart"; | |
| current-speed = <115200>; | |
| rxpo = <1>; | |
| txpo = <0>; | |
| }; | |
| &sercom2 { | |
| compatible = "atmel,sam0-i2c"; | |
| clock-frequency = <I2C_BITRATE_FAST>; | |
| #address-cells = <1>; | |
| #size-cells = <0>; | |
| /delete-property/ current-speed; | |
| /delete-property/ rxpo; | |
| /delete-property/ txpo; | |
| }; |