Memory management layer. More...
#include "usbd_msc_mem.h"
Go to the source code of this file.
Macros | |
#define | STORAGE_LUN_NBR 1 |
Functions | |
int8_t | STORAGE_GetCapacity (uint8_t lun, uint32_t *block_num, uint16_t *block_size) |
int8_t | STORAGE_GetMaxLun (void) |
int8_t | STORAGE_Init (uint8_t lun) |
int8_t | STORAGE_IsReady (uint8_t lun) |
int8_t | STORAGE_IsWriteProtected (uint8_t lun) |
int8_t | STORAGE_Read (uint8_t lun, uint8_t *buf, uint32_t blk_addr, uint16_t blk_len) |
int8_t | STORAGE_Write (uint8_t lun, uint8_t *buf, uint32_t blk_addr, uint16_t blk_len) |
Variables | |
const int8_t | STORAGE_Inquirydata [] |
USBD_STORAGE_cb_TypeDef | USBD_MICRO_SDIO_fops |
USBD_STORAGE_cb_TypeDef * | USBD_STORAGE_fops = &USBD_MICRO_SDIO_fops |
Memory management layer.
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 usbd_storage_template.c.
#define STORAGE_LUN_NBR 1 |
Definition at line 40 of file usbd_storage_template.c.
int8_t STORAGE_GetCapacity | ( | uint8_t | lun, |
uint32_t * | block_num, | ||
uint16_t * | block_size | ||
) |
Definition at line 115 of file usbd_storage_template.c.
int8_t STORAGE_GetMaxLun | ( | void | ) |
Definition at line 179 of file usbd_storage_template.c.
int8_t STORAGE_Init | ( | uint8_t | lun | ) |
Definition at line 103 of file usbd_storage_template.c.
int8_t STORAGE_IsReady | ( | uint8_t | lun | ) |
Definition at line 127 of file usbd_storage_template.c.
int8_t STORAGE_IsWriteProtected | ( | uint8_t | lun | ) |
Definition at line 139 of file usbd_storage_template.c.
int8_t STORAGE_Read | ( | uint8_t | lun, |
uint8_t * | buf, | ||
uint32_t | blk_addr, | ||
uint16_t | blk_len | ||
) |
Definition at line 151 of file usbd_storage_template.c.
int8_t STORAGE_Write | ( | uint8_t | lun, |
uint8_t * | buf, | ||
uint32_t | blk_addr, | ||
uint16_t | blk_len | ||
) |
Definition at line 165 of file usbd_storage_template.c.
const int8_t STORAGE_Inquirydata[] |
Definition at line 65 of file usbd_storage_template.c.
USBD_STORAGE_cb_TypeDef USBD_MICRO_SDIO_fops |
Definition at line 82 of file usbd_storage_template.c.