mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 06:52:40 +00:00
Add usb.overlay which contains chosen node and cdc-acm-uart node. Update USB configuration and test case. Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
19 lines
272 B
Plaintext
19 lines
272 B
Plaintext
/*
|
|
* Copyright (c) 2021 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
chosen {
|
|
zephyr,shell-uart = &cdc_acm_uart0;
|
|
};
|
|
};
|
|
|
|
&zephyr_udc0 {
|
|
cdc_acm_uart0: cdc_acm_uart0 {
|
|
compatible = "zephyr,cdc-acm-uart";
|
|
label = "CDC_ACM_0";
|
|
};
|
|
};
|