summaryrefslogtreecommitdiff
path: root/src/host
diff options
context:
space:
mode:
authorhathach <[email protected]>2021-06-10 16:55:12 +0700
committerhathach <[email protected]>2021-06-10 16:55:12 +0700
commit7e6cba7359dd362548026578dd48fe1f26312db3 (patch)
treed4392b446e8f20cc3d31b2f94e4e00f07d9cb1c3 /src/host
parent13cb0160421a6a66429e99ed103afba4f1c345ce (diff)
remove hcd_edpt_stalled()
Diffstat (limited to 'src/host')
-rw-r--r--src/host/hcd.h1
-rw-r--r--src/host/usbh.h7
2 files changed, 1 insertions, 7 deletions
diff --git a/src/host/hcd.h b/src/host/hcd.h
index 46209dc45..8cb5b3772 100644
--- a/src/host/hcd.h
+++ b/src/host/hcd.h
@@ -139,7 +139,6 @@ bool hcd_edpt_open(uint8_t rhport, uint8_t dev_addr, tusb_desc_endpoint_t const
bool hcd_edpt_xfer(uint8_t rhport, uint8_t dev_addr, uint8_t ep_addr, uint8_t * buffer, uint16_t buflen);
bool hcd_edpt_busy(uint8_t dev_addr, uint8_t ep_addr);
-bool hcd_edpt_stalled(uint8_t dev_addr, uint8_t ep_addr);
bool hcd_edpt_clear_stall(uint8_t dev_addr, uint8_t ep_addr);
//--------------------------------------------------------------------+
diff --git a/src/host/usbh.h b/src/host/usbh.h
index edc9e0808..4de6e7ba6 100644
--- a/src/host/usbh.h
+++ b/src/host/usbh.h
@@ -24,9 +24,6 @@
* This file is part of the TinyUSB stack.
*/
-/** \ingroup group_usbh USB Host Core (USBH)
- * @{ */
-
#ifndef _TUSB_USBH_H_
#define _TUSB_USBH_H_
@@ -90,6 +87,4 @@ TU_ATTR_WEAK void tuh_umount_cb(uint8_t dev_addr);
}
#endif
-#endif /* _TUSB_USBH_H_ */
-
-/** @} */
+#endif