summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorhathach <[email protected]>2019-03-27 16:09:49 +0700
committerhathach <[email protected]>2019-03-27 16:09:49 +0700
commit1e9848d917550b0af2115bc629d5e7e4743f23c7 (patch)
tree4642aacd58b24f96a5c8ac86364297f1f388112e /docs
parent472237665479961a714b6775e7fc9289e5e6c9ee (diff)
replace dcd_edpt_(clear)stall by usbd_edpt_(clear)stall
- remove dcd_edpt_stalled() from dcd porting
Diffstat (limited to 'docs')
-rw-r--r--docs/porting.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/porting.md b/docs/porting.md
index 70c9f25aa..5f1df0d7a 100644
--- a/docs/porting.md
+++ b/docs/porting.md
@@ -147,9 +147,9 @@ The arguments are:
* the result of the transfer. Failure isn't handled yet.
* `true` to note the call is from an interrupt handler.
-##### dcd_edpt_stall / dcd_edpt_stalled / dcd_edpt_clear_stall
+##### dcd_edpt_stall / dcd_edpt_clear_stall
-Stalling is one way an endpoint can indicate failure such as when an unsupported command is transmitted. The trio of `dcd_edpt_stall`, `dcd_edpt_stalled`, `dcd_edpt_clear_stall` help manage the stall state of all endpoints.
+Stalling is one way an endpoint can indicate failure such as when an unsupported command is transmitted. The pair of `dcd_edpt_stall`, `dcd_edpt_clear_stall` help manage the stall state of all endpoints.
## Woohoo!