Go to the source code of this file.
Functions | |
bool | tusbh_msc_is_mounted (uint8_t dev_addr) ATTR_PURE ATTR_WARN_UNUSED_RESULT |
Check if device supports MassStorage interface or not. More... | |
bool | tusbh_msc_is_busy (uint8_t dev_addr) ATTR_PURE ATTR_WARN_UNUSED_RESULT |
Check if the interface is currently busy or not. More... | |
uint8_t const * | tusbh_msc_get_vendor_name (uint8_t dev_addr) |
Get SCSI vendor's name of MassStorage device. More... | |
uint8_t const * | tusbh_msc_get_product_name (uint8_t dev_addr) |
Get SCSI product's name of MassStorage device. More... | |
tusb_error_t | tusbh_msc_get_capacity (uint8_t dev_addr, uint32_t *p_last_lba, uint32_t *p_block_size) |
Get SCSI Capacity of MassStorage device. More... | |
tusb_error_t | tusbh_msc_read10 (uint8_t dev_addr, uint8_t lun, void *p_buffer, uint32_t lba, uint16_t block_count) ATTR_WARN_UNUSED_RESULT |
Perform SCSI READ 10 command to read data from MassStorage device. More... | |
tusb_error_t | tusbh_msc_write10 (uint8_t dev_addr, uint8_t lun, void const *p_buffer, uint32_t lba, uint16_t block_count) ATTR_WARN_UNUSED_RESULT |
Perform SCSI WRITE 10 command to write data to MassStorage device. More... | |
tusb_error_t | tusbh_msc_request_sense (uint8_t dev_addr, uint8_t lun, uint8_t *p_data) |
Perform SCSI REQUEST SENSE command, used to retrieve sense data from MassStorage device. More... | |
tusb_error_t | tusbh_msc_test_unit_ready (uint8_t dev_addr, uint8_t lun, msc_cmd_status_wrapper_t *p_csw) ATTR_WARN_UNUSED_RESULT |
Perform SCSI TEST UNIT READY command to test if MassStorage device is ready. More... | |
void | tusbh_msc_mounted_cb (uint8_t dev_addr) |
Callback function that will be invoked when a device with MassStorage interface is mounted. More... | |
void | tusbh_msc_unmounted_cb (uint8_t dev_addr) |
Callback function that will be invoked when a device with MassStorage interface is unmounted. More... | |
void | tusbh_msc_isr (uint8_t dev_addr, tusb_event_t event, uint32_t xferred_bytes) |
Callback function that is invoked when an transferring event occurred. More... | |
Software License Agreement (BSD License)
Copyright (c) 2013, hathach (tinyusb.org) All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT INCLUDING NEGLIGENCE OR OTHERWISE ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
This file is part of the tinyusb stack.
Definition in file msc_host.h.