1# Copyright (c) 2023 Nordic Semiconductor ASA 2# 3# SPDX-License-Identifier: Apache-2.0 4 5config USBD_CDC_ECM_CLASS 6 bool "USB CDC ECM implementation [EXPERIMENTAL]" 7 default y 8 depends on NET_L2_ETHERNET 9 depends on DT_HAS_ZEPHYR_CDC_ECM_ETHERNET_ENABLED 10 help 11 USB CDC Ethernet Control Model (ECM) implementation" 12 13if USBD_CDC_ECM_CLASS 14 15module = USBD_CDC_ECM 16module-str = usbd cdc_ecm 17default-count = 1 18source "subsys/logging/Kconfig.template.log_config" 19rsource "Kconfig.template.instances_count" 20 21endif 22