diff options
Diffstat (limited to 'tinyusb/class')
| -rw-r--r-- | tinyusb/class/custom_host.c (renamed from tinyusb/class/custom_class_host.c) | 4 | ||||
| -rw-r--r-- | tinyusb/class/custom_host.h (renamed from tinyusb/class/custom_class.h) | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/tinyusb/class/custom_class_host.c b/tinyusb/class/custom_host.c index 20b06d184..ad3315980 100644 --- a/tinyusb/class/custom_class_host.c +++ b/tinyusb/class/custom_host.c @@ -1,6 +1,6 @@ /**************************************************************************/ /*! - @file custom_class_host.c + @file custom_host.c @author hathach (tinyusb.org) @section LICENSE @@ -46,7 +46,7 @@ // INCLUDE //--------------------------------------------------------------------+ #include "common/tusb_common.h" -#include "custom_class.h" +#include "custom_host.h" //--------------------------------------------------------------------+ // MACRO CONSTANT TYPEDEF diff --git a/tinyusb/class/custom_class.h b/tinyusb/class/custom_host.h index ebcaf7935..2bf3a8d3c 100644 --- a/tinyusb/class/custom_class.h +++ b/tinyusb/class/custom_host.h @@ -1,6 +1,6 @@ /**************************************************************************/ /*! - @file custom_class.h + @file custom_host.h @author hathach (tinyusb.org) @section LICENSE @@ -40,8 +40,8 @@ * \defgroup Group_Custom Custom Class (not supported yet) * @{ */ -#ifndef _TUSB_CUSTOM_CLASS_H_ -#define _TUSB_CUSTOM_CLASS_H_ +#ifndef _TUSB_CUSTOM_HOST_H_ +#define _TUSB_CUSTOM_HOST_H_ #include "common/tusb_common.h" #include "host/usbh.h" @@ -82,6 +82,6 @@ void cush_close(uint8_t dev_addr); } #endif -#endif /* _TUSB_CUSTOM_CLASS_H_ */ +#endif /* _TUSB_CUSTOM_HOST_H_ */ /** @} */ |
