![]() |
STM32F769IDiscovery
1.00
uDANTE Audio Networking with STM32F7 DISCO board
|
Header file for usbh_core.c. More...
#include "usbh_conf.h"
#include "usbh_def.h"
#include "usbh_ioreq.h"
#include "usbh_pipes.h"
#include "usbh_ctlreq.h"
Go to the source code of this file.
Macros | |
#define | HOST_USER_SELECT_CONFIGURATION 1 |
#define | HOST_USER_CLASS_ACTIVE 2 |
#define | HOST_USER_CLASS_SELECTED 3 |
#define | HOST_USER_CONNECTION 4 |
#define | HOST_USER_DISCONNECTION 5 |
#define | HOST_USER_UNRECOVERED_ERROR 6 |
Functions | |
USBH_StatusTypeDef | USBH_Init (USBH_HandleTypeDef *phost, void(*pUsrFunc)(USBH_HandleTypeDef *phost, uint8_t), uint8_t id) |
HCD_Init Initialize the HOST Core. More... | |
USBH_StatusTypeDef | USBH_DeInit (USBH_HandleTypeDef *phost) |
HCD_Init De-Initialize the Host portion of the driver. More... | |
USBH_StatusTypeDef | USBH_RegisterClass (USBH_HandleTypeDef *phost, USBH_ClassTypeDef *pclass) |
USBH_RegisterClass Link class driver to Host Core. More... | |
USBH_StatusTypeDef | USBH_SelectInterface (USBH_HandleTypeDef *phost, uint8_t interface) |
USBH_SelectInterface Select current interface. More... | |
uint8_t | USBH_FindInterface (USBH_HandleTypeDef *phost, uint8_t Class, uint8_t SubClass, uint8_t Protocol) |
USBH_FindInterface Find the interface index for a specific class. More... | |
uint8_t | USBH_GetActiveClass (USBH_HandleTypeDef *phost) |
USBH_GetActiveClass Return Device Class. More... | |
uint8_t | USBH_FindInterfaceIndex (USBH_HandleTypeDef *phost, uint8_t interface_number, uint8_t alt_settings) |
USBH_FindInterfaceIndex Find the interface index for a specific class interface and alternate setting number. More... | |
USBH_StatusTypeDef | USBH_Start (USBH_HandleTypeDef *phost) |
USBH_Start Start the USB Host Core. More... | |
USBH_StatusTypeDef | USBH_Stop (USBH_HandleTypeDef *phost) |
USBH_Stop Stop the USB Host Core. More... | |
USBH_StatusTypeDef | USBH_Process (USBH_HandleTypeDef *phost) |
USBH_Process Background process of the USB Core. More... | |
USBH_StatusTypeDef | USBH_ReEnumerate (USBH_HandleTypeDef *phost) |
HCD_ReEnumerate Perform a new Enumeration phase. More... | |
USBH_StatusTypeDef | USBH_LL_Init (USBH_HandleTypeDef *phost) |
USBH_LL_Init Initialize the Low Level portion of the Host driver. More... | |
USBH_StatusTypeDef | USBH_LL_DeInit (USBH_HandleTypeDef *phost) |
USBH_LL_DeInit De-Initialize the Low Level portion of the Host driver. More... | |
USBH_StatusTypeDef | USBH_LL_Start (USBH_HandleTypeDef *phost) |
USBH_LL_Start Start the Low Level portion of the Host driver. More... | |
USBH_StatusTypeDef | USBH_LL_Stop (USBH_HandleTypeDef *phost) |
USBH_LL_Stop Stop the Low Level portion of the Host driver. More... | |
USBH_StatusTypeDef | USBH_LL_Connect (USBH_HandleTypeDef *phost) |
USBH_LL_Connect Handle USB Host connexion event. More... | |
USBH_StatusTypeDef | USBH_LL_Disconnect (USBH_HandleTypeDef *phost) |
USBH_LL_Disconnect Handle USB Host disconnection event. More... | |
USBH_SpeedTypeDef | USBH_LL_GetSpeed (USBH_HandleTypeDef *phost) |
USBH_LL_GetSpeed Return the USB Host Speed from the Low Level Driver. More... | |
USBH_StatusTypeDef | USBH_LL_ResetPort (USBH_HandleTypeDef *phost) |
USBH_LL_ResetPort Reset the Host Port of the Low Level Driver. More... | |
uint32_t | USBH_LL_GetLastXferSize (USBH_HandleTypeDef *phost, uint8_t) |
USBH_LL_GetLastXferSize Return the last transferred packet size. More... | |
USBH_StatusTypeDef | USBH_LL_DriverVBUS (USBH_HandleTypeDef *phost, uint8_t) |
USBH_LL_DriverVBUS Drive VBUS. More... | |
USBH_StatusTypeDef | USBH_LL_OpenPipe (USBH_HandleTypeDef *phost, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t, uint16_t) |
USBH_LL_OpenPipe Open a pipe of the Low Level Driver. More... | |
USBH_StatusTypeDef | USBH_LL_ClosePipe (USBH_HandleTypeDef *phost, uint8_t) |
USBH_LL_ClosePipe Close a pipe of the Low Level Driver. More... | |
USBH_StatusTypeDef | USBH_LL_SubmitURB (USBH_HandleTypeDef *phost, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t *, uint16_t, uint8_t) |
USBH_LL_SubmitURB Submit a new URB to the low level driver. More... | |
USBH_URBStateTypeDef | USBH_LL_GetURBState (USBH_HandleTypeDef *phost, uint8_t) |
USBH_LL_GetURBState Get a URB state from the low level driver. More... | |
USBH_StatusTypeDef | USBH_LL_SetToggle (USBH_HandleTypeDef *phost, uint8_t, uint8_t) |
USBH_LL_SetToggle Set toggle for a pipe. More... | |
uint8_t | USBH_LL_GetToggle (USBH_HandleTypeDef *phost, uint8_t) |
USBH_LL_GetToggle Return the current toggle of a pipe. More... | |
void | USBH_Delay (uint32_t Delay) |
USBH_Delay Delay routine for the USB Host Library. More... | |
void | USBH_LL_SetTimer (USBH_HandleTypeDef *phost, uint32_t) |
USBH_LL_SetTimer Set the initial Host Timer tick. More... | |
void | USBH_LL_IncTimer (USBH_HandleTypeDef *phost) |
USBH_LL_IncTimer Increment Host Timer tick. More... | |
Header file for usbh_core.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_core.h.