[74] | 1 | /* USER CODE BEGIN Header */ |
---|
| 2 | /** |
---|
| 3 | ****************************************************************************** |
---|
| 4 | * @file sd_diskio.h |
---|
| 5 | * @brief Header for sd_diskio.c module |
---|
| 6 | ****************************************************************************** |
---|
| 7 | * @attention |
---|
| 8 | * |
---|
| 9 | * Copyright (c) 2025 STMicroelectronics. |
---|
| 10 | * All rights reserved. |
---|
| 11 | * |
---|
| 12 | * This software is licensed under terms that can be found in the LICENSE file |
---|
| 13 | * in the root directory of this software component. |
---|
| 14 | * If no LICENSE file comes with this software, it is provided AS-IS. |
---|
| 15 | * |
---|
| 16 | ****************************************************************************** |
---|
| 17 | */ |
---|
| 18 | /* USER CODE END Header */ |
---|
| 19 | |
---|
[75] | 20 | /* Note: code generation based on sd_diskio_dma_rtos_template.h */ |
---|
[74] | 21 | |
---|
| 22 | /* Define to prevent recursive inclusion -------------------------------------*/ |
---|
| 23 | #ifndef __SD_DISKIO_H |
---|
| 24 | #define __SD_DISKIO_H |
---|
| 25 | |
---|
| 26 | /* USER CODE BEGIN firstSection */ |
---|
| 27 | /* can be used to modify / undefine following code or add new definitions */ |
---|
| 28 | /* USER CODE END firstSection */ |
---|
| 29 | |
---|
| 30 | /* Includes ------------------------------------------------------------------*/ |
---|
| 31 | #include "bsp_driver_sd.h" |
---|
| 32 | /* Exported types ------------------------------------------------------------*/ |
---|
| 33 | /* Exported constants --------------------------------------------------------*/ |
---|
| 34 | /* Exported functions ------------------------------------------------------- */ |
---|
| 35 | extern const Diskio_drvTypeDef SD_Driver; |
---|
| 36 | |
---|
| 37 | /* USER CODE BEGIN lastSection */ |
---|
| 38 | /* can be used to modify / undefine previous code or add new definitions */ |
---|
| 39 | /* USER CODE END lastSection */ |
---|
| 40 | |
---|
| 41 | #endif /* __SD_DISKIO_H */ |
---|