35 lines
1.3 KiB
C
35 lines
1.3 KiB
C
/**
|
|
******************************************************************************
|
|
* @file usbh_diskio.h
|
|
* @author MCD Application Team
|
|
* @brief Header for usbh_diskio_template.c module. This file needs to be
|
|
customized and copied under the application project tree.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2018 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.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef __USBH_DISKIO_H
|
|
#define __USBH_DISKIO_H
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "usbh_core.h"
|
|
#include "usbh_msc.h"
|
|
/* Exported types ------------------------------------------------------------*/
|
|
/* Exported constants --------------------------------------------------------*/
|
|
/* Exported functions ------------------------------------------------------- */
|
|
extern const Diskio_drvTypeDef USBH_Driver;
|
|
|
|
#endif /* __USBH_DISKIO_H */
|
|
|
|
|