Distinguish between test case dependencies where a board has a test feature "usbd" and where no dependency is required other than the devicetree overlay file, as here to build the UDC skeleton driver. Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
16 lines
266 B
Plaintext
16 lines
266 B
Plaintext
/*
|
|
* Copyright (c) 2023 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/delete-node/ &zephyr_udc0;
|
|
|
|
/ {
|
|
zephyr_udc0: udc_skeleton0 {
|
|
compatible = "zephyr,udc-skeleton";
|
|
num-bidir-endpoints = <8>;
|
|
maximum-speed = "high-speed";
|
|
};
|
|
};
|