From 9f95ff5b6ba01db09552b84a0ab79607060a2666 Mon Sep 17 00:00:00 2001 From: Ali Labbene Date: Wed, 11 Dec 2019 08:59:21 +0100 Subject: Official ARM version: v5.4.0 Add CMSIS V5.4.0, please refer to index.html available under \docs folder. Note: content of \CMSIS\Core\Include has been copied under \Include to keep the same structure used in existing projects, and thus avoid projects mass update Note: the following components have been removed from ARM original delivery (as not used in ST packages) - CMSIS_EW2018.pdf - .gitattributes - .gitignore - \Device - \CMSIS - \CoreValidation - \DAP - \Documentation - \DoxyGen - \Driver - \Pack - \RTOS\CMSIS_RTOS_Tutorial.pdf - \RTOS\RTX - \RTOS\Template - \RTOS2\RTX - \Utilities - All ARM/GCC projects files are deleted from \DSP, \RTOS and \RTOS2 Change-Id: Ia026c3f0f0d016627a4fb5a9032852c33d24b4d3 --- docs/Driver/html/group__usb__interface__gr.html | 177 ++++++++++++++++++++++++ 1 file changed, 177 insertions(+) create mode 100644 docs/Driver/html/group__usb__interface__gr.html (limited to 'docs/Driver/html/group__usb__interface__gr.html') diff --git a/docs/Driver/html/group__usb__interface__gr.html b/docs/Driver/html/group__usb__interface__gr.html new file mode 100644 index 0000000..b18f599 --- /dev/null +++ b/docs/Driver/html/group__usb__interface__gr.html @@ -0,0 +1,177 @@ + + + + + +USB Interface +CMSIS-Driver: USB Interface + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
CMSIS-Driver +  Version 2.6.0 +
+
Peripheral Interface for Middleware and Application Code
+
+
+ +
+
    + +
+
+ + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
USB Interface
+
+
+ +

USB common definitions (Driver_USB.h) +More...

+ + + + + + + + + + + + + + +

+Content

 USB Device Interface
 Driver API for USB Device Peripheral (Driver_USBD.h)
 
 USB Host Interface
 Driver API for USB Host Peripheral (Driver_USBH.h)
 
 USB Speed
 USB Speed definitions.
 
 USB Endpoint Type
 USB Endpoint Type definitions.
 
+

Description

+

USB common definitions (Driver_USB.h)

+

The Universal Serial Bus (USB) implements a serial bus for data exchange. It is a host controlled, plug-and-play interface between a USB host and USB devices using a tiered star topology. In microcontroller (MCU) applications, the interface is often used to connect a device to a host for data exchange or control purposes.

+ +

Block Diagram

+

Typically only one USB Device is connected to a USB Host. If several USB devices must be connected to the same USB host, then the connection must be done via a USB hub.

+
+USB_Schematics.png +
+Simplified USB Schema
+

USB API

+

The following header files define the Application Programming Interface (API) for the USB interface:

+
    +
  • Driver_USB.h : Common definitions of the USBD and USBH interface
  • +
  • Driver_USBD.h : Driver API for USB Device Peripheral
  • +
  • Driver_USBH.h : Driver API for USB Host Peripheral
  • +
+

The driver implementation is a typical part of the Device Family Pack (DFP) that supports the peripherals of the microcontroller family.

+

Driver Functions

+

The driver functions are published in the access struct as explained in Common Driver Functions

+ +
+
+
+ + + + -- cgit