This commit is contained in:
hathach 2018-06-17 14:21:26 +07:00
parent 5692b84ddf
commit bd8fc5a112
3 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
/**************************************************************************/ /**************************************************************************/
/*! /*!
@file custom_class_host.c @file custom_host.c
@author hathach (tinyusb.org) @author hathach (tinyusb.org)
@section LICENSE @section LICENSE
@ -46,7 +46,7 @@
// INCLUDE // INCLUDE
//--------------------------------------------------------------------+ //--------------------------------------------------------------------+
#include "common/tusb_common.h" #include "common/tusb_common.h"
#include "custom_class.h" #include "custom_host.h"
//--------------------------------------------------------------------+ //--------------------------------------------------------------------+
// MACRO CONSTANT TYPEDEF // MACRO CONSTANT TYPEDEF

View File

@ -1,6 +1,6 @@
/**************************************************************************/ /**************************************************************************/
/*! /*!
@file custom_class.h @file custom_host.h
@author hathach (tinyusb.org) @author hathach (tinyusb.org)
@section LICENSE @section LICENSE
@ -40,8 +40,8 @@
* \defgroup Group_Custom Custom Class (not supported yet) * \defgroup Group_Custom Custom Class (not supported yet)
* @{ */ * @{ */
#ifndef _TUSB_CUSTOM_CLASS_H_ #ifndef _TUSB_CUSTOM_HOST_H_
#define _TUSB_CUSTOM_CLASS_H_ #define _TUSB_CUSTOM_HOST_H_
#include "common/tusb_common.h" #include "common/tusb_common.h"
#include "host/usbh.h" #include "host/usbh.h"
@ -82,6 +82,6 @@ void cush_close(uint8_t dev_addr);
} }
#endif #endif
#endif /* _TUSB_CUSTOM_CLASS_H_ */ #endif /* _TUSB_CUSTOM_HOST_H_ */
/** @} */ /** @} */

View File

@ -67,7 +67,7 @@
#endif #endif
#if CFG_TUSB_HOST_CUSTOM_CLASS #if CFG_TUSB_HOST_CUSTOM_CLASS
#include "class/custom_class.h" #include "class/custom_host.h"
#endif #endif
#endif #endif