Template project for running EEZ Flow firmware project using STM32F469I-DISCO development board
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.4 KiB

2 years ago
/* USER CODE BEGIN Header */
/**
******************************************************************************
2 years ago
* @file usb_otg.h
* @brief This file contains all the function prototypes for
* the usb_otg.c file
2 years ago
******************************************************************************
* @attention
*
* Copyright (c) 2022 STMicroelectronics.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component.
* If no LICENSE file comes with this software, it is provided AS-IS.
*
******************************************************************************
*/
/* USER CODE END Header */
/* Define to prevent recursive inclusion -------------------------------------*/
2 years ago
#ifndef __USB_OTG_H__
#define __USB_OTG_H__
2 years ago
#ifdef __cplusplus
2 years ago
extern "C" {
2 years ago
#endif
/* Includes ------------------------------------------------------------------*/
2 years ago
#include "main.h"
/* USER CODE BEGIN Includes */
/* USER CODE END Includes */
extern PCD_HandleTypeDef hpcd_USB_OTG_FS;
/* USER CODE BEGIN Private defines */
/* USER CODE END Private defines */
2 years ago
2 years ago
void MX_USB_OTG_FS_PCD_Init(void);
2 years ago
2 years ago
/* USER CODE BEGIN Prototypes */
2 years ago
2 years ago
/* USER CODE END Prototypes */
2 years ago
#ifdef __cplusplus
}
#endif
2 years ago
#endif /* __USB_OTG_H__ */
2 years ago