diff --git a/components/drivers/usb/cherryusb/Kconfig b/components/drivers/usb/cherryusb/Kconfig index 3e9ce5f1d9..abcb372fc3 100644 --- a/components/drivers/usb/cherryusb/Kconfig +++ b/components/drivers/usb/cherryusb/Kconfig @@ -107,7 +107,7 @@ if RT_USING_CHERRYUSB choice prompt "Select usb device template" - default RT_CHERRYUSB_DEVICE_TEMPLATE + default RT_CHERRYUSB_DEVICE_TEMPLATE_NONE config RT_CHERRYUSB_DEVICE_TEMPLATE_NONE bool "none (Implement it yourself)" config RT_CHERRYUSB_DEVICE_TEMPLATE_CDC_ACM diff --git a/components/drivers/usb/cherryusb/Kconfig.cherryusb b/components/drivers/usb/cherryusb/Kconfig.cherryusb index 4d44a7506d..0e36e73bb4 100644 --- a/components/drivers/usb/cherryusb/Kconfig.cherryusb +++ b/components/drivers/usb/cherryusb/Kconfig.cherryusb @@ -107,7 +107,7 @@ if CHERRYUSB choice prompt "Select usb device template" - default CHERRYUSB_DEVICE_TEMPLATE + default CHERRYUSB_DEVICE_TEMPLATE_NONE config CHERRYUSB_DEVICE_TEMPLATE_NONE bool "none (Implement it yourself)" config CHERRYUSB_DEVICE_TEMPLATE_CDC_ACM diff --git a/components/drivers/usb/cherryusb/platform/rtthread/usb_check.c b/components/drivers/usb/cherryusb/platform/rtthread/usb_check.c index d4baf03e58..643aa3ddd6 100644 --- a/components/drivers/usb/cherryusb/platform/rtthread/usb_check.c +++ b/components/drivers/usb/cherryusb/platform/rtthread/usb_check.c @@ -1,6 +1,6 @@ #include "rtthread.h" -#ifdef PKG_CHERRYUSB_HOST +#ifdef RT_CHERRYUSB_HOST #ifndef RT_USING_TIMER_SOFT #error must enable RT_USING_TIMER_SOFT to support timer callback in thread