USB Drive interaction without Parallax #27937?
Techno Keith
Posts: 12
Is it possible to communicate with a usb drive without any type of middle man?· Would a complex driver need to be written?
Comments
The problem is that USB is quite complex with many layers. You can get chips that take over some of the lower level higher speed functionality (like the MAX3421E). Even with this, you'd still need a complex driver. For a USB Memory Stick, you'd also need a file system. There's a driver already written for the FAT16 file system for SD cards and it could be modified for use with a Memory Stick, but it can't handle FAT32 which is necessary for drives > 2GB. It also can't handle long file names or subdirectories.
Any thoughts on skipping usb and directly interfacing with the memory from a usb drive?