Browse Source

fix(cherryusb): fix typo

sakumisu 11 months ago
parent
commit
4122f6d8b8

+ 1 - 1
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

+ 1 - 1
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

+ 1 - 1
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