From 4122f6d8b898fa26ff528dce4d1f8afaa829e8a2 Mon Sep 17 00:00:00 2001 From: sakumisu <1203593632@qq.com> Date: Fri, 12 Jul 2024 15:44:59 +0800 Subject: [PATCH] fix(cherryusb): fix typo --- components/drivers/usb/cherryusb/Kconfig | 2 +- components/drivers/usb/cherryusb/Kconfig.cherryusb | 2 +- components/drivers/usb/cherryusb/platform/rtthread/usb_check.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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