mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
a7e16536ab
Signed-off-by: Dylan Laduranty <dylan.laduranty@mesotic.com>
32 lines
736 B
Plaintext
32 lines
736 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_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
|