1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

usbus/cdc/ecm: Expose configurations to Kconfig

This commit is contained in:
Leandro Lanzieri 2020-04-08 16:31:46 +02:00
parent 8b857844fc
commit dddeb54e7d
No known key found for this signature in database
GPG Key ID: 39607DE6080007A3
2 changed files with 44 additions and 0 deletions

View File

@ -1 +1,2 @@
rsource "acm/Kconfig"
rsource "ecm/Kconfig"

View File

@ -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