diff --git a/sys/usb/usbus/cdc/Kconfig b/sys/usb/usbus/cdc/Kconfig index 71eff61702..f1184d4593 100644 --- a/sys/usb/usbus/cdc/Kconfig +++ b/sys/usb/usbus/cdc/Kconfig @@ -1 +1,2 @@ rsource "acm/Kconfig" +rsource "ecm/Kconfig" diff --git a/sys/usb/usbus/cdc/ecm/Kconfig b/sys/usb/usbus/cdc/ecm/Kconfig new file mode 100644 index 0000000000..1f4324a06f --- /dev/null +++ b/sys/usb/usbus/cdc/ecm/Kconfig @@ -0,0 +1,43 @@ +# Copyright (c) 2020 HAW Hamburg +# +# This file is subject to the terms and conditions of the GNU Lesser +# General Public License v2.1. See the file LICENSE in the top level +# directory for more details. +# +menuconfig KCONFIG_MODULE_USBUS_CDC_ECM + bool "Configure USBUS CDC ECM" + depends on MODULE_USBUS_CDC_ECM + help + Configure the USBUS CDC ECM module via Kconfig. + +if KCONFIG_MODULE_USBUS_CDC_ECM + +config USBUS_CDC_ECM_CONFIG_SPEED_IND + bool "Configure upload and download speeds independently" + +config USBUS_CDC_ECM_CONFIG_SPEED + int + prompt "Link throughput (bits/second)" if !USBUS_CDC_ECM_CONFIG_SPEED_IND + default 1000000 + help + This defines a common up and down link throughput in bits/second. The + USB peripheral will report this to the host. This doesn't affect the + actual throughput, only what the peripheral reports to the host. + +config USBUS_CDC_ECM_CONFIG_SPEED_DOWNSTREAM + int + prompt "Link download speed (bits/second)" if USBUS_CDC_ECM_CONFIG_SPEED_IND + default USBUS_CDC_ECM_CONFIG_SPEED + help + This is the link download speed, defined in bits/second, that the USB + peripheral will report to the host. + +config USBUS_CDC_ECM_CONFIG_SPEED_UPSTREAM + int + prompt "Link upload speed (bits/second)" if USBUS_CDC_ECM_CONFIG_SPEED_IND + default USBUS_CDC_ECM_CONFIG_SPEED + help + This is the link upload speed, defined in bits/second, that the USB + peripheral will report to the host. + +endif # KCONFIG_MODULE_USBUS_CDC_ECM