29 lines
458 B
Plaintext
29 lines
458 B
Plaintext
/*
|
|
* Copyright (c) 2021 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
|
|
*/
|
|
|
|
/ {
|
|
chosen {
|
|
zephyr,bt-c2h-uart = &cdc_acm_uart0;
|
|
};
|
|
};
|
|
|
|
&zephyr_udc0 {
|
|
cdc_acm_uart0: cdc_acm_uart0 {
|
|
compatible = "zephyr,cdc-acm-uart";
|
|
};
|
|
};
|
|
|
|
|
|
/ {
|
|
host_interface {
|
|
compatible = "gpio-outputs";
|
|
status = "okay";
|
|
timesync: pin_0 {
|
|
gpios = <&gpio1 01 GPIO_ACTIVE_HIGH>;
|
|
label = "Controller to host timesync pin";
|
|
};
|
|
};
|
|
}; |