Changes between Version 1 and Version 2 of FAQ


Ignore:
Timestamp:
01/05/11 16:53:51 (2 years ago)
Author:
stuge
Comment:

Link to libpayload in open file on storage device FAQ

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v1 v2  
    99 
    1010== Can I use libusb to open a file on a USB storage device? == 
    11 Yes, in that libusb can be used for the low-level communication with USB Mass Storage Class devices. But in order to access a file on such a device you will first have to implement MSC, SCSI and then the particular filesystem used on the device, the most common being FAT32. 
     11Yes, libusb can be used for low-level communication with USB Mass Storage Class devices. But in order to access a file on such a device you must first implement Mass Storage Class, SCSI and the particular filesystem used on the device, most commonly FAT32. No, we can not do this for you. Please study existing open source implementations to learn about this, one minimal implementation exists in [http://www.coreboot.org/Libpayload libpayload] from the coreboot project, or simply mount the storage device if you just want to read the file. 
    1212 
    1313== Can I create a driverless device using HID class? ==