diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/demo.c | 2 | ||||
-rw-r--r-- | src/usart_helpers.h | 2 | ||||
-rw-r--r-- | src/usbh_core.c (renamed from src/usbh_hubbed.c) | 0 | ||||
-rw-r--r-- | src/usbh_driver_hid_mouse.c | 4 | ||||
-rw-r--r-- | src/usbh_driver_hub.c | 2 |
5 files changed, 5 insertions, 5 deletions
@@ -21,7 +21,7 @@ */
#include "usart_helpers.h" /// provides LOG_PRINTF macros used for debugging
-#include "usbh_hubbed.h" /// provides usbh_init() and usbh_poll()
+#include "usbh_core.h" /// provides usbh_init() and usbh_poll()
#include "usbh_lld_stm32f4.h" /// provides low level usb host driver for stm32f4 platform
#include "usbh_driver_hid_mouse.h" /// provides usb device driver Human Interface Device - type mouse
#include "usbh_driver_hub.h" /// provides usb full speed hub driver (Low speed devices on hub are not supported)
diff --git a/src/usart_helpers.h b/src/usart_helpers.h index eef43fa..d36f689 100644 --- a/src/usart_helpers.h +++ b/src/usart_helpers.h @@ -23,7 +23,7 @@ #ifndef USBH_USART_HELPERS_H
#define USBH_USART_HELPERS_H
-#include "usbh_hubbed.h"
+#include "usbh_core.h"
#include <stdint.h>
#include <stdarg.h>
diff --git a/src/usbh_hubbed.c b/src/usbh_core.c index 82f080f..82f080f 100644 --- a/src/usbh_hubbed.c +++ b/src/usbh_core.c diff --git a/src/usbh_driver_hid_mouse.c b/src/usbh_driver_hid_mouse.c index 8324999..5265329 100644 --- a/src/usbh_driver_hid_mouse.c +++ b/src/usbh_driver_hid_mouse.c @@ -20,7 +20,7 @@ * */ -#include "usbh_hubbed.h" +#include "usbh_core.h" #include "driver/usbh_device_driver.h" #include "usbh_driver_hid_mouse.h" #include "usart_helpers.h" @@ -232,7 +232,7 @@ static void read_mouse_in(void *drvdata) } /** - * \param time_curr_us - monotically rising time (see usbh_hubbed.h) + * @param time_curr_us - monotically rising time (@see usbh_poll()) * unit is microseconds */ static void poll(void *drvdata, uint32_t time_curr_us) diff --git a/src/usbh_driver_hub.c b/src/usbh_driver_hub.c index eaaf896..7bd58cc 100644 --- a/src/usbh_driver_hub.c +++ b/src/usbh_driver_hub.c @@ -764,7 +764,7 @@ static void read_ep1(void *drvdata) }
/**
- * \param time_curr_us - monotically rising time (see usbh_hubbed.h)
+ * @param time_curr_us - monotically rising time (@see usbh_poll())
* unit is microseconds
*/
static void poll(void *drvdata, uint32_t time_curr_us)
|