From 4f40bc80ecb9498247d958fcdd3211646cd5d8b8 Mon Sep 17 00:00:00 2001 From: zyh Date: Tue, 24 Apr 2018 15:00:33 +0800 Subject: [PATCH] [Components][USB device] kconfig allow none class --- components/drivers/Kconfig | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/components/drivers/Kconfig b/components/drivers/Kconfig index cec1b72cdf..fac3d8ef47 100755 --- a/components/drivers/Kconfig +++ b/components/drivers/Kconfig @@ -198,8 +198,11 @@ menu "Using USB" default n choice prompt "Device type" - default _RT_USB_DEVICE_CDC + default _RT_USB_DEVICE_NONE depends on !RT_USB_DEVICE_COMPOSITE + config _RT_USB_DEVICE_NONE + bool "Using custom class by register interface" + select RT_USB_DEVICE_NONE config _RT_USB_DEVICE_CDC bool "Enable to use device as CDC device" select RT_USB_DEVICE_CDC @@ -224,6 +227,8 @@ menu "Using USB" if RT_USB_DEVICE_COMPOSITE config RT_USB_DEVICE_CDC bool "Enable to use device as CDC device" + default n + config RT_USB_DEVICE_NONE default y config RT_USB_DEVICE_MSTORAGE bool "Enable to use device as Mass Storage device" -- GitLab