summaryrefslogtreecommitdiff
path: root/docs/reference/glossary.rst
diff options
context:
space:
mode:
authorc1570 <[email protected]>2025-09-25 00:20:45 +0200
committerc1570 <[email protected]>2025-10-20 21:07:06 +0200
commite7b851d9ac2657e591f772dd3fa326e2d8d00270 (patch)
tree5cc40736eba8e2bf5a36039aa3b70b3f7bb957fe /docs/reference/glossary.rst
parente4ff88f3640458f820838efd047a3831333446d8 (diff)
Naming conventions, buffer handling
Diffstat (limited to 'docs/reference/glossary.rst')
-rw-r--r--docs/reference/glossary.rst10
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/reference/glossary.rst b/docs/reference/glossary.rst
index e6e92738f..56ee49619 100644
--- a/docs/reference/glossary.rst
+++ b/docs/reference/glossary.rst
@@ -14,7 +14,7 @@ Glossary
USB transfer type used for device configuration and control. All USB devices must support control transfers on endpoint 0.
DCD
- Device Controller Driver. The hardware abstraction layer for USB device controllers in TinyUSB.
+ Device Controller Driver. The hardware abstraction layer for USB device controllers in TinyUSB. See also HCD.
Descriptor
Data structures that describe USB device capabilities, configuration, and interfaces to the host.
@@ -32,7 +32,7 @@ Glossary
Process where USB host discovers and configures a newly connected device.
HCD
- Host Controller Driver. The hardware abstraction layer for USB host controllers in TinyUSB.
+ Host Controller Driver. The hardware abstraction layer for USB host controllers in TinyUSB. See also DCD.
HID
Human Interface Device. USB class for input devices like keyboards, mice, and game controllers.
@@ -73,6 +73,12 @@ Glossary
Super Speed
USB 3.0 speed mode operating at 5 Gbps. Not supported by TinyUSB.
+ tud
+ TinyUSB Device. Function prefix for all device stack APIs (e.g., ``tud_task()``, ``tud_cdc_write()``).
+
+ tuh
+ TinyUSB Host. Function prefix for all host stack APIs (e.g., ``tuh_task()``, ``tuh_cdc_receive()``).
+
UAC
USB Audio Class. USB class for audio devices.