STM32F769IDiscovery  1.00
uDANTE Audio Networking with STM32F7 DISCO board
usbd_conf_template.c
Go to the documentation of this file.
1 
30 /* Includes ------------------------------------------------------------------*/
31 #include "usbd_core.h"
32 /* Private typedef -----------------------------------------------------------*/
33 /* Private define ------------------------------------------------------------*/
34 /* Private macro -------------------------------------------------------------*/
35 /* Private variables ---------------------------------------------------------*/
36 /* Private function prototypes -----------------------------------------------*/
37 /* Private functions ---------------------------------------------------------*/
44 {
45  return USBD_OK;
46 }
47 
54 {
55  return USBD_OK;
56 }
57 
64 {
65  return USBD_OK;
66 }
67 
74 {
75  return USBD_OK;
76 }
77 
87  uint8_t ep_addr,
88  uint8_t ep_type,
89  uint16_t ep_mps)
90 {
91  return USBD_OK;
92 }
93 
101 {
102  return USBD_OK;
103 }
104 
112 {
113  return USBD_OK;
114 }
115 
123 {
124  return USBD_OK;
125 }
126 
134 {
135  return USBD_OK;
136 }
137 
144 uint8_t USBD_LL_IsStallEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr)
145 {
146  return 0;
147 }
148 
156 {
157  return USBD_OK;
158 }
159 
169  uint8_t ep_addr,
170  uint8_t *pbuf,
171  uint16_t size)
172 {
173  return USBD_OK;
174 }
175 
185  uint8_t ep_addr,
186  uint8_t *pbuf,
187  uint16_t size)
188 {
189  return USBD_OK;
190 }
191 
198 uint32_t USBD_LL_GetRxDataSize(USBD_HandleTypeDef *pdev, uint8_t ep_addr)
199 {
200  return 0;
201 }
202 
208 void USBD_LL_Delay(uint32_t Delay)
209 {
210 }
211 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
212 
USBD_StatusTypeDef
Definition: usbd_def.h:194
USBD_StatusTypeDef USBD_LL_FlushEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr)
Flushes an endpoint of the Low Level Driver.
USBD_StatusTypeDef USBD_LL_CloseEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr)
Closes an endpoint of the Low Level Driver.
void USBD_LL_Delay(uint32_t Delay)
Delays routine for the USB Device Library.
uint32_t USBD_LL_GetRxDataSize(USBD_HandleTypeDef *pdev, uint8_t ep_addr)
Returns the last transferred packet size.
USBD_StatusTypeDef USBD_LL_Transmit(USBD_HandleTypeDef *pdev, uint8_t ep_addr, uint8_t *pbuf, uint16_t size)
Transmits data over an endpoint.
USBD_StatusTypeDef USBD_LL_Start(USBD_HandleTypeDef *pdev)
Starts the Low Level portion of the Device driver.
USBD_StatusTypeDef USBD_LL_ClearStallEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr)
Clears a Stall condition on an endpoint of the Low Level Driver.
uint8_t USBD_LL_IsStallEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr)
Returns Stall condition.
USBD_StatusTypeDef USBD_LL_PrepareReceive(USBD_HandleTypeDef *pdev, uint8_t ep_addr, uint8_t *pbuf, uint16_t size)
Prepares an endpoint for reception.
USBD_StatusTypeDef USBD_LL_Init(USBD_HandleTypeDef *pdev)
Initializes the Low Level portion of the Device driver.
Definition: pbuf.h:108
USBD_StatusTypeDef USBD_LL_StallEP(USBD_HandleTypeDef *pdev, uint8_t ep_addr)
Sets a Stall condition on an endpoint of the Low Level Driver.
USBD_StatusTypeDef USBD_LL_SetUSBAddress(USBD_HandleTypeDef *pdev, uint8_t dev_addr)
Assigns a USB address to the device.
USBD_StatusTypeDef USBD_LL_Stop(USBD_HandleTypeDef *pdev)
Stops the Low Level portion of the Device driver.
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.
Header file for usbd_core.c file.
USBD_StatusTypeDef USBD_LL_DeInit(USBD_HandleTypeDef *pdev)
De-Initializes the Low Level portion of the Device driver.