diff options
| author | hathach <[email protected]> | 2018-06-17 14:21:26 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-06-17 14:21:26 +0700 |
| commit | bd8fc5a1120a51e1de3e38aa64db9c903771cd9e (patch) | |
| tree | ad2340d2b61b0f96ecec68fe72577af914a8ae58 /tinyusb/class | |
| parent | 5692b84ddf3326a3cde48b09f7123cd5ec0e93cc (diff) | |
clean up
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_ */ /** @} */ |
