zephyr/tests/drivers/udc/udc_skeleton.overlay
Johann Fischer 1695eed7c9 tests: udc: rework driver test configuration
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>
2024-06-11 11:38:09 +01:00

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";
};
};