Hello
i have some source code in .Net technology such as
http://www.lvr.com/hidpage.htm
but i dont know how to communicate or send/Receive data to/from my V-USB device?
should i write some code in my device fimware or jan axelson source code in C#.NET?
can i make a data storage V-USB system with MMC in my device with an AVR?
thanks
V-USB and .NET
Re: V-USB and .NET
I can only answer the last of your questions: You can't build an MMC based data storage with V-USB because it's low speed USB only. Not only that it would be too slow, the standard does not allow bulk endpoints for low speed devices.
Re: V-USB and .NET
I beg to differ. MMC cards use SPI interface. So long as ur AVR has SPI interface , u can interface with an MMC card. This had nothing to do with V-USB.
I found this to be extremely useful when i interfaced a 16MB MMC card with the Atmega48.
http://tinkerish.com/blog/?p=13
I dont foresee any problems interfacing with both the MMC card and the USB with one MCU.
I found this to be extremely useful when i interfaced a 16MB MMC card with the Atmega48.
http://tinkerish.com/blog/?p=13
I dont foresee any problems interfacing with both the MMC card and the USB with one MCU.
Re: V-USB and .NET
Interfacing MMC is no problem, of course. And it's no problem to implement an MMC driver and USB on the same device. But you can't implement the USB mass storage class.