<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forums.obdev.at/app.php/feed/topic/3137" />

	<title>Objective Development Forums</title>
	
	<link href="https://forums.obdev.at/index.php" />
	<updated>2009-08-23T01:39:55+02:00</updated>

	<author><name><![CDATA[Objective Development Forums]]></name></author>
	<id>https://forums.obdev.at/app.php/feed/topic/3137</id>

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2009-08-23T01:39:55+02:00</updated>

		<published>2009-08-23T01:39:55+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10620#p10620</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10620#p10620"/>
		<title type="html"><![CDATA[Re: Development Time]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10620#p10620"><![CDATA[
I have done several medical products that required USB connectivity. I wrote a GUI on the PC side using C#. There were several examples available to get me started but the device was unique and required special HID considerations.<p>Statistics: Posted by Guest — Sun Aug 23, 2009 1:39 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ulao]]></name></author>
		<updated>2009-08-22T02:23:01+02:00</updated>

		<published>2009-08-22T02:23:01+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10615#p10615</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10615#p10615"/>
		<title type="html"><![CDATA[Re: Development Time]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10615#p10615"><![CDATA[
Yes, I personally find it extremely frustration, confusing, and lonely. Not only can I not find working examples, people point blank dont answer questions on the matter, hence I dont think its just me.<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=1281">ulao</a> — Sat Aug 22, 2009 2:23 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2009-08-20T19:47:14+02:00</updated>

		<published>2009-08-20T19:47:14+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10601#p10601</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10601#p10601"/>
		<title type="html"><![CDATA[Re: Development Time]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10601#p10601"><![CDATA[
Thank you for the responses.<br /><br /><blockquote class="uncited"><div>Create a HID to do what I want was a bit difficult I spent a few weeks on that. I still have not implemented data from host to client ( ForceFeedBack ) and I'm still trying.</div></blockquote><br /><br />If you are doing a standard device (keyboard, mouse, joystick, etc) Windows may already have a usable HID driver for the PC side. Are you saying that you needed a special HID and that the Device-to-Host portion was easy but the Host-to-Device was your difficult part?<p>Statistics: Posted by Guest — Thu Aug 20, 2009 7:47 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[spiky]]></name></author>
		<updated>2009-08-19T13:59:06+02:00</updated>

		<published>2009-08-19T13:59:06+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10585#p10585</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10585#p10585"/>
		<title type="html"><![CDATA[Re: Development Time]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10585#p10585"><![CDATA[
2 hours. Including the one hour i wasted because the USB cable i bought from a local store did not follow the color coding as described in wikipedia. I havent attempted HID but custom class devices are very easy to make with V-USB. The author has done everything for you. Someone with even very little experience in AVR can also pick up on V-USB. The documentation is simply superb. Even a noob like me couldn't go wrong.<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=2578">spiky</a> — Wed Aug 19, 2009 1:59 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ulao]]></name></author>
		<updated>2009-08-18T14:09:12+02:00</updated>

		<published>2009-08-18T14:09:12+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10571#p10571</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10571#p10571"/>
		<title type="html"><![CDATA[Re: Development Time]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10571#p10571"><![CDATA[
<blockquote class="uncited"><div>Roughly how long would it take to implement V-USB on an ATmega8/32/64? I have a lot of AVR experience but none with V-USB. I have done USB on non-AVR MCUs and also on the AT90USB1287 (LUFA).<br /></div></blockquote> - I had 0 experience with avr and usb-v . With the examples they have it only took me 1/2 a day. And most of that was due to fuse settings and learning the nature of avr. If by that you mean just creating a simple usb project and you do in fact have avr experience it should be as simple as a compile. Create an avr project, put in the example code and compile. Learning how to interface(send data ) with the usb for me was very simple. Create a HID to do what I want was a bit difficult I spent a few weeks on that. I still have not implemented data from host to client ( ForceFeedBack ) and I'm still trying.<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=1281">ulao</a> — Tue Aug 18, 2009 2:09 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2009-08-18T03:21:50+02:00</updated>

		<published>2009-08-18T03:21:50+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10566#p10566</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10566#p10566"/>
		<title type="html"><![CDATA[Development Time]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3137&amp;p=10566#p10566"><![CDATA[
Roughly how long would it take to implement V-USB on an ATmega8/32/64? I have a lot of AVR experience but none with V-USB. I have done USB on non-AVR MCUs and also on the AT90USB1287 (LUFA).<br /><br />I know this is highly dependant upon the developer's capabilities, but I am just looking for a rough number for an estimate.<br />10 hours?  25 hours?  50 hours? 100 hours?  more?<br /><br />(Sorry if this post pops up twice. I posted over an hour ago and it didn't show up so I am trying again.)<p>Statistics: Posted by Guest — Tue Aug 18, 2009 3:21 am</p><hr />
]]></content>
	</entry>
	</feed>
