![]() |
STM32F769IDiscovery
1.00
uDANTE Audio Networking with STM32F7 DISCO board
|
USB Device configuration and interface file This template should be copied to the user folder, renamed and customized following user needs. More...
#include "usbd_core.h"
Go to the source code of this file.
Functions | |
USBD_StatusTypeDef | USBD_LL_Init (USBD_HandleTypeDef *pdev) |
Initializes the Low Level portion of the Device driver. More... | |
USBD_StatusTypeDef | USBD_LL_DeInit (USBD_HandleTypeDef *pdev) |
De-Initializes the Low Level portion of the Device driver. More... | |
USBD_StatusTypeDef | USBD_LL_Start (USBD_HandleTypeDef *pdev) |
Starts the Low Level portion of the Device driver. More... | |
USBD_StatusTypeDef | USBD_LL_Stop (USBD_HandleTypeDef *pdev) |
Stops the Low Level portion of the Device driver. More... | |
USBD_StatusTypeDef | USBD_LL_OpenEP (USBD_HandleTypeDef *pdev, uint8_t ep_addr, uint8_t ep_type, uint16_t ep_mps) |
Opens an endpoint of the Low Level Driver. More... | |
USBD_StatusTypeDef | USBD_LL_CloseEP (USBD_HandleTypeDef *pdev, uint8_t ep_addr) |
Closes an endpoint of the Low Level Driver. More... | |
USBD_StatusTypeDef | USBD_LL_FlushEP (USBD_HandleTypeDef *pdev, uint8_t ep_addr) |
Flushes an endpoint of the Low Level Driver. More... | |
USBD_StatusTypeDef | USBD_LL_StallEP (USBD_HandleTypeDef *pdev, uint8_t ep_addr) |
Sets a Stall condition on an endpoint of the Low Level Driver. More... | |
USBD_StatusTypeDef | USBD_LL_ClearStallEP (USBD_HandleTypeDef *pdev, uint8_t ep_addr) |
Clears a Stall condition on an endpoint of the Low Level Driver. More... | |
uint8_t | USBD_LL_IsStallEP (USBD_HandleTypeDef *pdev, uint8_t ep_addr) |
Returns Stall condition. More... | |
USBD_StatusTypeDef | USBD_LL_SetUSBAddress (USBD_HandleTypeDef *pdev, uint8_t dev_addr) |
Assigns a USB address to the device. More... | |
USBD_StatusTypeDef | USBD_LL_Transmit (USBD_HandleTypeDef *pdev, uint8_t ep_addr, uint8_t *pbuf, uint16_t size) |
Transmits data over an endpoint. More... | |
USBD_StatusTypeDef | USBD_LL_PrepareReceive (USBD_HandleTypeDef *pdev, uint8_t ep_addr, uint8_t *pbuf, uint16_t size) |
Prepares an endpoint for reception. More... | |
uint32_t | USBD_LL_GetRxDataSize (USBD_HandleTypeDef *pdev, uint8_t ep_addr) |
Returns the last transferred packet size. More... | |
void | USBD_LL_Delay (uint32_t Delay) |
Delays routine for the USB Device Library. More... | |
USB Device configuration and interface file This template should be copied to the user folder, renamed and customized following user needs.
Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); You may not use this file except in compliance with the License. You may obtain a copy of the License at:
http://www.st.com/software_license_agreement_liberty_v2
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Definition in file usbd_conf_template.c.