![]() |
STM32F769IDiscovery
1.00
uDANTE Audio Networking with STM32F7 DISCO board
|
This file contains all the prototypes for the usbh_cdc.c. More...
#include "usbh_core.h"
Go to the source code of this file.
Data Structures | |
union | _CDC_LineCodingStructure |
struct | _FunctionalDescriptorHeader |
struct | _CallMgmtFunctionalDescriptor |
struct | _AbstractCntrlMgmtFunctionalDescriptor |
struct | _UnionFunctionalDescriptor |
struct | _USBH_CDCInterfaceDesc |
struct | CDC_CommItfTypedef |
struct | CDC_DataItfTypedef |
struct | _CDC_Process |
Typedefs | |
typedef union _CDC_LineCodingStructure | CDC_LineCodingTypeDef |
typedef struct _FunctionalDescriptorHeader | CDC_HeaderFuncDesc_TypeDef |
typedef struct _CallMgmtFunctionalDescriptor | CDC_CallMgmtFuncDesc_TypeDef |
typedef struct _AbstractCntrlMgmtFunctionalDescriptor | CDC_AbstCntrlMgmtFuncDesc_TypeDef |
typedef struct _UnionFunctionalDescriptor | CDC_UnionFuncDesc_TypeDef |
typedef struct _USBH_CDCInterfaceDesc | CDC_InterfaceDesc_Typedef |
typedef struct _CDC_Process | CDC_HandleTypeDef |
Enumerations | |
enum | CDC_DataStateTypeDef { CDC_IDLE = 0, CDC_SEND_DATA, CDC_SEND_DATA_WAIT, CDC_RECEIVE_DATA, CDC_RECEIVE_DATA_WAIT } |
enum | CDC_StateTypeDef { CDC_IDLE_STATE = 0, CDC_SET_LINE_CODING_STATE, CDC_GET_LAST_LINE_CODING_STATE, CDC_TRANSFER_DATA, CDC_ERROR_STATE } |
Functions | |
USBH_StatusTypeDef | USBH_CDC_SetLineCoding (USBH_HandleTypeDef *phost, CDC_LineCodingTypeDef *linecoding) |
This function prepares the state before issuing the class specific commands. More... | |
USBH_StatusTypeDef | USBH_CDC_GetLineCoding (USBH_HandleTypeDef *phost, CDC_LineCodingTypeDef *linecoding) |
This function prepares the state before issuing the class specific commands. More... | |
USBH_StatusTypeDef | USBH_CDC_Transmit (USBH_HandleTypeDef *phost, uint8_t *pbuff, uint32_t length) |
This function prepares the state before issuing the class specific commands. More... | |
USBH_StatusTypeDef | USBH_CDC_Receive (USBH_HandleTypeDef *phost, uint8_t *pbuff, uint32_t length) |
This function prepares the state before issuing the class specific commands. More... | |
uint16_t | USBH_CDC_GetLastReceivedDataSize (USBH_HandleTypeDef *phost) |
This function return last received data size. More... | |
USBH_StatusTypeDef | USBH_CDC_Stop (USBH_HandleTypeDef *phost) |
USBH_CDC_Stop Stop current CDC Transmission. More... | |
void | USBH_CDC_LineCodingChanged (USBH_HandleTypeDef *phost) |
The function informs user that Settings have been changed. More... | |
void | USBH_CDC_TransmitCallback (USBH_HandleTypeDef *phost) |
The function informs user that data have been received. More... | |
void | USBH_CDC_ReceiveCallback (USBH_HandleTypeDef *phost) |
The function informs user that data have been sent. More... | |
Variables | |
USBH_ClassTypeDef | CDC_Class |
This file contains all the prototypes for the usbh_cdc.c.
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 usbh_cdc.h.