summaryrefslogtreecommitdiff
path: root/tinyusb/host/hcd.h
diff options
context:
space:
mode:
authorhathach <[email protected]>2014-02-20 10:41:31 +0700
committerhathach <[email protected]>2014-02-20 10:41:31 +0700
commit533c8d2eed68fe76242fa5dcd2b1733d6278a4e8 (patch)
tree1e7340ffc17d5716cdf58abe7ebf567487a3e221 /tinyusb/host/hcd.h
parentd86523b16ce4e2512661477b85f8a7447ab91efa (diff)
use hcd_pipe_is_busy instead of hcd_pipe_is_idle
remove hcd_pipe_is_idle
Diffstat (limited to 'tinyusb/host/hcd.h')
-rw-r--r--tinyusb/host/hcd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/host/hcd.h b/tinyusb/host/hcd.h
index 34e89fea4..952dc5fe2 100644
--- a/tinyusb/host/hcd.h
+++ b/tinyusb/host/hcd.h
@@ -95,7 +95,7 @@ tusb_error_t hcd_pipe_close(pipe_handle_t pipe_hdl) /*ATTR_WARN_UNUSED_RESULT*/
bool hcd_pipe_is_busy(pipe_handle_t pipe_hdl) ATTR_PURE;
bool hcd_pipe_is_error(pipe_handle_t pipe_hdl) ATTR_PURE;
bool hcd_pipe_is_stalled(pipe_handle_t pipe_hdl) ATTR_PURE; // stalled also counted as error
-bool hcd_pipe_is_idle(pipe_handle_t pipe_hdl) ATTR_PURE;
+
uint8_t hcd_pipe_get_endpoint_addr(pipe_handle_t pipe_hdl) ATTR_PURE;
tusb_error_t hcd_pipe_clear_stall(pipe_handle_t pipe_hdl);