kopia lustrzana https://github.com/micropython/micropython
108 wiersze
2.9 KiB
C
108 wiersze
2.9 KiB
C
/**
|
|
******************************************************************************
|
|
* @file usbh_usr.h
|
|
* @author MCD Application Team
|
|
* @version V2.1.0
|
|
* @date 19-March-2012
|
|
* @brief This file is the header file for usb usr file
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* <h2><center>© COPYRIGHT 2012 STMicroelectronics</center></h2>
|
|
*
|
|
* 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.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __USH_USR_H__
|
|
#define __USH_USR_H__
|
|
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "usbh_core.h"
|
|
#include "usb_conf.h"
|
|
#include <stdio.h>
|
|
|
|
/** @addtogroup USBH_USER
|
|
* @{
|
|
*/
|
|
|
|
/** @addtogroup USBH_HID_DEMO_USER_CALLBACKS
|
|
* @{
|
|
*/
|
|
|
|
/** @defgroup USBH_USR
|
|
* @brief This file is the header file for user action
|
|
* @{
|
|
*/
|
|
|
|
|
|
/** @defgroup USBH_CORE_Exported_Variables
|
|
* @{
|
|
*/
|
|
|
|
|
|
extern USBH_Usr_cb_TypeDef USR_Callbacks;
|
|
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
|
|
/** @defgroup USBH_CORE_Exported_FunctionsPrototype
|
|
* @{
|
|
*/
|
|
|
|
void USBH_USR_ApplicationSelected(void);
|
|
void USBH_USR_Init(void);
|
|
void USBH_USR_DeInit(void);
|
|
void USBH_USR_DeviceAttached(void);
|
|
void USBH_USR_ResetDevice(void);
|
|
void USBH_USR_DeviceDisconnected (void);
|
|
void USBH_USR_OverCurrentDetected (void);
|
|
void USBH_USR_DeviceSpeedDetected(uint8_t DeviceSpeed);
|
|
void USBH_USR_Device_DescAvailable(void *);
|
|
void USBH_USR_DeviceAddressAssigned(void);
|
|
void USBH_USR_Configuration_DescAvailable(USBH_CfgDesc_TypeDef * cfgDesc,
|
|
USBH_InterfaceDesc_TypeDef *itfDesc,
|
|
USBH_EpDesc_TypeDef *epDesc);
|
|
void USBH_USR_Manufacturer_String(void *);
|
|
void USBH_USR_Product_String(void *);
|
|
void USBH_USR_SerialNum_String(void *);
|
|
void USBH_USR_EnumerationDone(void);
|
|
USBH_USR_Status USBH_USR_UserInput(void);
|
|
void USBH_USR_DeInit(void);
|
|
void USBH_USR_DeviceNotSupported(void);
|
|
void USBH_USR_UnrecoveredError(void);
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
#endif /* __USBH_USR_H */
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|