From 34dbb3532ce4a5dd22cf8e596eb007003c3dd43c Mon Sep 17 00:00:00 2001 From: hathach Date: Mon, 12 Mar 2018 22:45:35 +0700 Subject: more rename --- tinyusb/class/cdc/cdc.h | 2 +- tinyusb/class/cdc/cdc_device.c | 2 +- tinyusb/class/cdc/cdc_device.h | 2 +- tinyusb/class/cdc/cdc_host.c | 2 +- tinyusb/class/cdc/cdc_host.h | 2 +- tinyusb/class/cdc/cdc_rndis_host.c | 2 +- tinyusb/class/cdc/cdc_rndis_host.h | 2 +- tinyusb/class/custom_class.h | 2 +- tinyusb/class/custom_class_host.c | 2 +- tinyusb/class/hid/hid.h | 2 +- tinyusb/class/hid/hid_device.c | 2 +- tinyusb/class/hid/hid_device.h | 2 +- tinyusb/class/hid/hid_host.c | 2 +- tinyusb/class/hid/hid_host.h | 2 +- tinyusb/class/msc/msc.h | 2 +- tinyusb/class/msc/msc_device.c | 2 +- tinyusb/class/msc/msc_device.h | 2 +- tinyusb/class/msc/msc_host.c | 2 +- tinyusb/class/msc/msc_host.h | 2 +- tinyusb/device/dcd_lpc175x_6x.h | 2 +- tinyusb/device/dcd_lpc_11uxx_13uxx.c | 2 +- tinyusb/device/usbd.h | 2 +- tinyusb/host/ehci/ehci.c | 2 +- tinyusb/host/ehci/ehci.h | 2 +- tinyusb/host/hcd.h | 2 +- tinyusb/host/hub.h | 2 +- tinyusb/host/ohci/ohci.c | 2 +- tinyusb/host/ohci/ohci.h | 2 +- tinyusb/host/usbh.c | 2 +- tinyusb/host/usbh_hcd.h | 2 +- tinyusb/host/usbh_hub.h | 2 +- tinyusb/osal/osal.h | 2 +- tinyusb/osal/osal_common.h | 2 +- tinyusb/tusb.h | 2 +- 34 files changed, 34 insertions(+), 34 deletions(-) (limited to 'tinyusb') diff --git a/tinyusb/class/cdc/cdc.h b/tinyusb/class/cdc/cdc.h index 2bc6448c3..6eb00e040 100644 --- a/tinyusb/class/cdc/cdc.h +++ b/tinyusb/class/cdc/cdc.h @@ -44,7 +44,7 @@ #ifndef _TUSB_CDC_H__ #define _TUSB_CDC_H__ -#include "common/common.h" +#include "common/tusb_common.h" #ifdef __cplusplus extern "C" { diff --git a/tinyusb/class/cdc/cdc_device.c b/tinyusb/class/cdc/cdc_device.c index 52f8a4bdd..957026d79 100644 --- a/tinyusb/class/cdc/cdc_device.c +++ b/tinyusb/class/cdc/cdc_device.c @@ -44,7 +44,7 @@ //--------------------------------------------------------------------+ // INCLUDE //--------------------------------------------------------------------+ -#include "common/common.h" +#include #include "cdc_device.h" //--------------------------------------------------------------------+ diff --git a/tinyusb/class/cdc/cdc_device.h b/tinyusb/class/cdc/cdc_device.h index a55655838..4ae9be7c1 100644 --- a/tinyusb/class/cdc/cdc_device.h +++ b/tinyusb/class/cdc/cdc_device.h @@ -39,7 +39,7 @@ #ifndef _TUSB_CDC_DEVICE_H_ #define _TUSB_CDC_DEVICE_H_ -#include "common/common.h" +#include "common/tusb_common.h" #include "device/usbd.h" #include "cdc.h" diff --git a/tinyusb/class/cdc/cdc_host.c b/tinyusb/class/cdc/cdc_host.c index fc1f8fba0..2d39d4155 100644 --- a/tinyusb/class/cdc/cdc_host.c +++ b/tinyusb/class/cdc/cdc_host.c @@ -45,7 +45,7 @@ //--------------------------------------------------------------------+ // INCLUDE //--------------------------------------------------------------------+ -#include "common/common.h" +#include "common/tusb_common.h" #include "cdc_host.h" //--------------------------------------------------------------------+ diff --git a/tinyusb/class/cdc/cdc_host.h b/tinyusb/class/cdc/cdc_host.h index ed04c903d..c4585cd8b 100644 --- a/tinyusb/class/cdc/cdc_host.h +++ b/tinyusb/class/cdc/cdc_host.h @@ -40,7 +40,7 @@ #ifndef _TUSB_CDC_HOST_H_ #define _TUSB_CDC_HOST_H_ -#include "common/common.h" +#include "common/tusb_common.h" #include "host/usbh.h" #include "cdc.h" diff --git a/tinyusb/class/cdc/cdc_rndis_host.c b/tinyusb/class/cdc/cdc_rndis_host.c index 1660507b2..6c0a74d3e 100644 --- a/tinyusb/class/cdc/cdc_rndis_host.c +++ b/tinyusb/class/cdc/cdc_rndis_host.c @@ -45,7 +45,7 @@ //--------------------------------------------------------------------+ // INCLUDE //--------------------------------------------------------------------+ -#include "common/common.h" +#include "common/tusb_common.h" #include "cdc_host.h" #include "cdc_rndis_host.h" diff --git a/tinyusb/class/cdc/cdc_rndis_host.h b/tinyusb/class/cdc/cdc_rndis_host.h index 8b68298dd..c4597daa8 100644 --- a/tinyusb/class/cdc/cdc_rndis_host.h +++ b/tinyusb/class/cdc/cdc_rndis_host.h @@ -43,7 +43,7 @@ #ifndef _TUSB_CDC_RNDIS_HOST_H_ #define _TUSB_CDC_RNDIS_HOST_H_ -#include "common/common.h" +#include "common/tusb_common.h" #include "host/usbh.h" #include "cdc_rndis.h" diff --git a/tinyusb/class/custom_class.h b/tinyusb/class/custom_class.h index 787c59abd..8a774187d 100644 --- a/tinyusb/class/custom_class.h +++ b/tinyusb/class/custom_class.h @@ -43,7 +43,7 @@ #ifndef _TUSB_CUSTOM_CLASS_H_ #define _TUSB_CUSTOM_CLASS_H_ -#include "common/common.h" +#include "common/tusb_common.h" #include "host/usbh.h" #ifdef __cplusplus diff --git a/tinyusb/class/custom_class_host.c b/tinyusb/class/custom_class_host.c index be660d9db..38d240541 100644 --- a/tinyusb/class/custom_class_host.c +++ b/tinyusb/class/custom_class_host.c @@ -45,7 +45,7 @@ //--------------------------------------------------------------------+ // INCLUDE //--------------------------------------------------------------------+ -#include "common/common.h" +#include "common/tusb_common.h" #include "custom_class.h" //--------------------------------------------------------------------+ diff --git a/tinyusb/class/hid/hid.h b/tinyusb/class/hid/hid.h index 54b78734b..d53eb979d 100644 --- a/tinyusb/class/hid/hid.h +++ b/tinyusb/class/hid/hid.h @@ -43,7 +43,7 @@ #ifndef _TUSB_HID_H_ #define _TUSB_HID_H_ -#include "common/common.h" +#include "common/tusb_common.h" #ifdef __cplusplus extern "C" { diff --git a/tinyusb/class/hid/hid_device.c b/tinyusb/class/hid/hid_device.c index c11936e2f..fd6da979f 100644 --- a/tinyusb/class/hid/hid_device.c +++ b/tinyusb/class/hid/hid_device.c @@ -44,7 +44,7 @@ //--------------------------------------------------------------------+ // INCLUDE //--------------------------------------------------------------------+ -#include "common/common.h" +#include "common/tusb_common.h" #include "hid_device.h" //--------------------------------------------------------------------+ diff --git a/tinyusb/class/hid/hid_device.h b/tinyusb/class/hid/hid_device.h index c2ca246f1..83ed2e8b5 100644 --- a/tinyusb/class/hid/hid_device.h +++ b/tinyusb/class/hid/hid_device.h @@ -39,7 +39,7 @@ #ifndef _TUSB_HID_DEVICE_H_ #define _TUSB_HID_DEVICE_H_ -#include "common/common.h" +#include "common/tusb_common.h" #include "device/usbd.h" #include "hid.h" diff --git a/tinyusb/class/hid/hid_host.c b/tinyusb/class/hid/hid_host.c index a86dfa372..88e6684e9 100644 --- a/tinyusb/class/hid/hid_host.c +++ b/tinyusb/class/hid/hid_host.c @@ -44,7 +44,7 @@ //--------------------------------------------------------------------+ // INCLUDE //--------------------------------------------------------------------+ -#include "common/common.h" +#include "common/tusb_common.h" #include "hid_host.h" //--------------------------------------------------------------------+ diff --git a/tinyusb/class/hid/hid_host.h b/tinyusb/class/hid/hid_host.h index dc294e533..e7094c121 100644 --- a/tinyusb/class/hid/hid_host.h +++ b/tinyusb/class/hid/hid_host.h @@ -42,7 +42,7 @@ #ifndef _TUSB_HID_HOST_H_ #define _TUSB_HID_HOST_H_ -#include "common/common.h" +#include "common/tusb_common.h" #include "host/usbh.h" #include "hid.h" diff --git a/tinyusb/class/msc/msc.h b/tinyusb/class/msc/msc.h index cfd9b5e88..da18eb071 100644 --- a/tinyusb/class/msc/msc.h +++ b/tinyusb/class/msc/msc.h @@ -46,7 +46,7 @@ #ifndef _TUSB_MSC_H_ #define _TUSB_MSC_H_ -#include "common/common.h" +#include #ifdef __cplusplus extern "C" { diff --git a/tinyusb/class/msc/msc_device.c b/tinyusb/class/msc/msc_device.c index a929b53e2..26e5536de 100644 --- a/tinyusb/class/msc/msc_device.c +++ b/tinyusb/class/msc/msc_device.c @@ -44,7 +44,7 @@ //--------------------------------------------------------------------+ // INCLUDE //--------------------------------------------------------------------+ -#include "common/common.h" +#include #include "msc_device.h" //--------------------------------------------------------------------+ diff --git a/tinyusb/class/msc/msc_device.h b/tinyusb/class/msc/msc_device.h index 06fc7cf05..98c041849 100644 --- a/tinyusb/class/msc/msc_device.h +++ b/tinyusb/class/msc/msc_device.h @@ -39,7 +39,7 @@ #ifndef _TUSB_MSC_DEVICE_H_ #define _TUSB_MSC_DEVICE_H_ -#include "common/common.h" +#include #include "device/usbd.h" #include "msc.h" diff --git a/tinyusb/class/msc/msc_host.c b/tinyusb/class/msc/msc_host.c index b1e8e84ca..545b7379a 100644 --- a/tinyusb/class/msc/msc_host.c +++ b/tinyusb/class/msc/msc_host.c @@ -45,7 +45,7 @@ //--------------------------------------------------------------------+ // INCLUDE //--------------------------------------------------------------------+ -#include "common/common.h" +#include "common/tusb_common.h" #include "msc_host.h" //--------------------------------------------------------------------+ diff --git a/tinyusb/class/msc/msc_host.h b/tinyusb/class/msc/msc_host.h index 9eb79f3c0..7237ee34d 100644 --- a/tinyusb/class/msc/msc_host.h +++ b/tinyusb/class/msc/msc_host.h @@ -39,7 +39,7 @@ #ifndef _TUSB_MSC_HOST_H_ #define _TUSB_MSC_HOST_H_ -#include "common/common.h" +#include "common/tusb_common.h" #include "host/usbh.h" #include "msc.h" diff --git a/tinyusb/device/dcd_lpc175x_6x.h b/tinyusb/device/dcd_lpc175x_6x.h index fe3c509c8..75cc265b4 100644 --- a/tinyusb/device/dcd_lpc175x_6x.h +++ b/tinyusb/device/dcd_lpc175x_6x.h @@ -43,7 +43,7 @@ #ifndef _TUSB_DCD_LPC175X_6X_H_ #define _TUSB_DCD_LPC175X_6X_H_ -#include "common/common.h" +#include #ifdef __cplusplus extern "C" { diff --git a/tinyusb/device/dcd_lpc_11uxx_13uxx.c b/tinyusb/device/dcd_lpc_11uxx_13uxx.c index a94a25328..c77cbd041 100644 --- a/tinyusb/device/dcd_lpc_11uxx_13uxx.c +++ b/tinyusb/device/dcd_lpc_11uxx_13uxx.c @@ -48,7 +48,7 @@ //--------------------------------------------------------------------+ // INCLUDE //--------------------------------------------------------------------+ -#include "common/common.h" +#include "common/tusb_common.h" #include "hal/hal.h" #include "osal/osal.h" #include "common/timeout_timer.h" diff --git a/tinyusb/device/usbd.h b/tinyusb/device/usbd.h index f16a0215b..8926d225c 100644 --- a/tinyusb/device/usbd.h +++ b/tinyusb/device/usbd.h @@ -49,7 +49,7 @@ //--------------------------------------------------------------------+ // INCLUDE //--------------------------------------------------------------------+ -#include "common/common.h" +#include #include "osal/osal.h" #include "tusb_dcd.h" diff --git a/tinyusb/host/ehci/ehci.c b/tinyusb/host/ehci/ehci.c index bf135fdc1..e107b11c8 100644 --- a/tinyusb/host/ehci/ehci.c +++ b/tinyusb/host/ehci/ehci.c @@ -36,7 +36,7 @@ */ /**************************************************************************/ -#include "common/common.h" +#include "common/tusb_common.h" #if MODE_HOST_SUPPORTED && (TUSB_CFG_MCU == MCU_LPC43XX || TUSB_CFG_MCU == MCU_LPC18XX) //--------------------------------------------------------------------+ diff --git a/tinyusb/host/ehci/ehci.h b/tinyusb/host/ehci/ehci.h index 0c37fba97..aa91d629a 100644 --- a/tinyusb/host/ehci/ehci.h +++ b/tinyusb/host/ehci/ehci.h @@ -45,7 +45,7 @@ #ifndef _TUSB_EHCI_H_ #define _TUSB_EHCI_H_ -#include "common/common.h" +#include "common/tusb_common.h" #include "../hcd.h" /* Abbreviation diff --git a/tinyusb/host/hcd.h b/tinyusb/host/hcd.h index 57ba7dbbe..2b27cc127 100644 --- a/tinyusb/host/hcd.h +++ b/tinyusb/host/hcd.h @@ -47,7 +47,7 @@ extern "C" { #endif -#include "common/common.h" +#include #if MODE_HOST_SUPPORTED // Max number of endpoints per device diff --git a/tinyusb/host/hub.h b/tinyusb/host/hub.h index 665765a2a..512d14742 100644 --- a/tinyusb/host/hub.h +++ b/tinyusb/host/hub.h @@ -48,7 +48,7 @@ #ifndef _TUSB_HUB_H_ #define _TUSB_HUB_H_ -#include "common/common.h" +#include #include "usbh.h" #ifdef __cplusplus diff --git a/tinyusb/host/ohci/ohci.c b/tinyusb/host/ohci/ohci.c index f4fea2b01..7395730f3 100644 --- a/tinyusb/host/ohci/ohci.c +++ b/tinyusb/host/ohci/ohci.c @@ -36,7 +36,7 @@ */ /**************************************************************************/ -#include "common/common.h" +#include #if MODE_HOST_SUPPORTED && (TUSB_CFG_MCU == MCU_LPC175X_6X) //--------------------------------------------------------------------+ diff --git a/tinyusb/host/ohci/ohci.h b/tinyusb/host/ohci/ohci.h index 3d3607c2f..6c73326af 100644 --- a/tinyusb/host/ohci/ohci.h +++ b/tinyusb/host/ohci/ohci.h @@ -49,7 +49,7 @@ extern "C" { #endif -#include "common/common.h" +#include "common/tusb_common.h" //--------------------------------------------------------------------+ // OHCI CONFIGURATION & CONSTANTS diff --git a/tinyusb/host/usbh.c b/tinyusb/host/usbh.c index 3650610da..f007f68bb 100644 --- a/tinyusb/host/usbh.c +++ b/tinyusb/host/usbh.c @@ -36,7 +36,7 @@ */ /**************************************************************************/ -#include "common/common.h" +#include "common/tusb_common.h" #if MODE_HOST_SUPPORTED diff --git a/tinyusb/host/usbh_hcd.h b/tinyusb/host/usbh_hcd.h index 0f96d4ddc..ac967332e 100644 --- a/tinyusb/host/usbh_hcd.h +++ b/tinyusb/host/usbh_hcd.h @@ -49,7 +49,7 @@ //--------------------------------------------------------------------+ // INCLUDE //--------------------------------------------------------------------+ -#include "common/common.h" +#include "common/tusb_common.h" #include "osal/osal.h" #ifdef _TEST_ diff --git a/tinyusb/host/usbh_hub.h b/tinyusb/host/usbh_hub.h index c6a8716e5..48a81bcd2 100644 --- a/tinyusb/host/usbh_hub.h +++ b/tinyusb/host/usbh_hub.h @@ -45,7 +45,7 @@ //--------------------------------------------------------------------+ // INCLUDE //--------------------------------------------------------------------+ -#include "common/common.h" +#include "common/tusb_common.h" #ifdef __cplusplus extern "C" { diff --git a/tinyusb/osal/osal.h b/tinyusb/osal/osal.h index b85a7fbe1..8f9fab3e7 100644 --- a/tinyusb/osal/osal.h +++ b/tinyusb/osal/osal.h @@ -54,7 +54,7 @@ /** @} */ #include "tusb_option.h" -#include "common/common.h" +#include "common/tusb_common.h" #if TUSB_CFG_OS == TUSB_OS_NONE diff --git a/tinyusb/osal/osal_common.h b/tinyusb/osal/osal_common.h index 977b7d59d..2d35e74b4 100644 --- a/tinyusb/osal/osal_common.h +++ b/tinyusb/osal/osal_common.h @@ -46,7 +46,7 @@ extern "C" { #endif -#include "common/common.h" +#include enum { diff --git a/tinyusb/tusb.h b/tinyusb/tusb.h index 7450dbfcb..795431cff 100644 --- a/tinyusb/tusb.h +++ b/tinyusb/tusb.h @@ -46,7 +46,7 @@ //--------------------------------------------------------------------+ // INCLUDE //--------------------------------------------------------------------+ -#include "common/common.h" +#include "common/tusb_common.h" #include "tusb_hal.h" #include "osal/osal.h" -- cgit v1.3.1