Page 1 of 1

V-USB and .NET

Posted: Wed Jun 17, 2009 9:02 am
by DevMan
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

Re: V-USB and .NET

Posted: Fri Jul 10, 2009 5:54 pm
by christian
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

Posted: Sat Aug 01, 2009 7:45 pm
by spiky
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.

Re: V-USB and .NET

Posted: Sat Aug 01, 2009 8:14 pm
by christian
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.