summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAmir Hammad <amir.hammad@hotmail.com>2016-07-08 23:53:42 +0200
committerAmir Hammad <amir.hammad@hotmail.com>2016-07-08 23:53:42 +0200
commit4f3a3905c9c75c483fd72e173bd904f566dd4472 (patch)
tree5ca1e4d51a7582527ae49470e4dd9837ca197f3c /src
parentdd950136aa5c438855eb6a3e87f352a11f60747c (diff)
downloadsecure-hid-4f3a3905c9c75c483fd72e173bd904f566dd4472.tar.gz
secure-hid-4f3a3905c9c75c483fd72e173bd904f566dd4472.tar.bz2
secure-hid-4f3a3905c9c75c483fd72e173bd904f566dd4472.zip
rename usbh_hubbed.* to usbh_core.*
Signed-off-by: Amir Hammad <amir.hammad@hotmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/demo.c2
-rw-r--r--src/usart_helpers.h2
-rw-r--r--src/usbh_core.c (renamed from src/usbh_hubbed.c)0
-rw-r--r--src/usbh_driver_hid_mouse.c4
-rw-r--r--src/usbh_driver_hub.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/demo.c b/src/demo.c
index f6cccf5..295013a 100644
--- a/src/demo.c
+++ b/src/demo.c
@@ -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)