mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
39 lines
958 B
Plaintext
39 lines
958 B
Plaintext
# Copyright (c) 2021 Mesotic SAS
|
|
#
|
|
# 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 MODULE_USBUS_MSC
|
|
bool "USBUS Mass Storage Class"
|
|
depends on MODULE_USBUS
|
|
select MODULE_MTD
|
|
select MODULE_MTD_WRITE_PAGE
|
|
select USEMODULE_USBUS_MSC
|
|
|
|
help
|
|
Configure the USBUS MSC module via Kconfig.
|
|
|
|
if MODULE_USBUS_MSC
|
|
|
|
config USBUS_MSC_AUTO_MTD
|
|
bool "Automatically export all MTD devices via USB"
|
|
default true
|
|
help
|
|
This will automatically export all MTD devices that follow
|
|
the default naming scheme on startup.
|
|
|
|
config USBUS_MSC_VENDOR_ID
|
|
string "MSC Vendor ID"
|
|
default "RIOT-OS"
|
|
|
|
config USBUS_MSC_PRODUCT_ID
|
|
string "MSC Product ID"
|
|
default "RIOT_MSC_DISK"
|
|
|
|
config USBUS_MSC_PRODUCT_REV
|
|
string "MSC Product Revision"
|
|
default "1.0"
|
|
|
|
endif # MODULE_USBUS_MSC
|