Changes between Version 1 and Version 2 of FAQ
- Timestamp:
- 01/05/11 16:53:51 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FAQ
v1 v2 9 9 10 10 == 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.11 Yes, 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. 12 12 13 13 == Can I create a driverless device using HID class? ==