<?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/3321" />

	<title>Objective Development Forums</title>
	
	<link href="https://forums.obdev.at/index.php" />
	<updated>2010-02-27T17:26:13+02:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2010-02-27T17:26:13+02:00</updated>

		<published>2010-02-27T17:26:13+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3321&amp;p=13433#p13433</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3321&amp;p=13433#p13433"/>
		<title type="html"><![CDATA[Re: Could not find USB device &quot;LEDControl&quot; vid=0x16c0 pid=0x5dc]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3321&amp;p=13433#p13433"><![CDATA[
Oops... <img class="smilies" src="./../../../images/smilies/icon_redface.gif" alt=":oops:" title="Embarassed" /> Its a mega168 without the p, allright.<br /><br />Found the issue. Had to change a few &quot;minor details&quot; to better reflect my circuit...<br /><div class="codebox"><p>Code: </p><pre><code>usbconfig.h:#define USB_CFG_IOPORTNAME      B<br />usbconfig.h:#define USB_CFG_DMINUS_BIT      0<br />usbconfig.h:#define USB_CFG_DPLUS_BIT       1<br /></code></pre></div><br />Et voila!<br />Had to change the port of the LED also. And the LED turns off when I issue &quot;./set_led on&quot;. <br />But otherwise looking much better.   Thanks for the moral support. (&amp; thanks for the nice V-USB!)<br /><br />Now for some custom class hacking!<p>Statistics: Posted by Guest — Sat Feb 27, 2010 5:26 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[christian]]></name></author>
		<updated>2010-02-27T13:51:02+02:00</updated>

		<published>2010-02-27T13:51:02+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3321&amp;p=13427#p13427</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3321&amp;p=13427#p13427"/>
		<title type="html"><![CDATA[Re: Could not find USB device &quot;LEDControl&quot; vid=0x16c0 pid=0x5dc]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3321&amp;p=13427#p13427"><![CDATA[
If the device is not recognized, there's probably a very basic communication problem.<br /><br />Is this the 168p? AVR-libc does not support the compatibility defines for interrupt vectors for P suffix devices any more. This means that you must either define USB_INTR_VECTOR to INT0_vect in usbconfig.h or choose a similar non-P-suffix chip when you compile. This particular issue (INT0_vect instead of SIG_INTERRUPT0) will be fixed in the next release.<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=8">christian</a> — Sat Feb 27, 2010 1:51 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2010-02-27T13:16:28+02:00</updated>

		<published>2010-02-27T13:16:28+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3321&amp;p=13426#p13426</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3321&amp;p=13426#p13426"/>
		<title type="html"><![CDATA[Re: Could not find USB device &quot;LEDControl&quot; vid=0x16c0 pid=0x5dc]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3321&amp;p=13426#p13426"><![CDATA[
Hi, I have exact same problem with the custom class example. Device is not found. The device works OK, if I flash some other firmware (tried with e.g. usbasp). <br /><br />Running this in Linux (Ubuntu 9.04, avr-gcc 4.3.2). With root permissions. Device is not found with 'lsusb' command either.<br /><br />Tried on two devices, both circuits build upon the circuit from usbasp (and both do work as programmers). Using ATmega 168, crystal 12MHz on one board, 16 MHz on the other.<br />Tried both vusb 20090822 (12 and 16 MHz) and vusb-20090415 (12MHz only)<br /><br />I'd rather had implemented my project as a custom class as it is documented:<br /><blockquote class="uncited"><div>Advantages:<br />    * Easy to implement on the device.<br />    * Easy to write host side software on Unix.</div></blockquote><br />, but I'll try other classes now <img class="smilies" src="./../../../images/smilies/icon_mrgreen.gif" alt=":mrgreen:" title="Mr. Green" /><p>Statistics: Posted by Guest — Sat Feb 27, 2010 1:16 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[christian]]></name></author>
		<updated>2009-11-01T10:45:46+02:00</updated>

		<published>2009-11-01T10:45:46+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3321&amp;p=11719#p11719</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3321&amp;p=11719#p11719"/>
		<title type="html"><![CDATA[Re: Could not find USB device &quot;LEDControl&quot; vid=0x16c0 pid=0x5dc]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3321&amp;p=11719#p11719"><![CDATA[
The examples are primarily for the AVR side. On Windows, you need libusb-win32 for the low level device driver.<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=8">christian</a> — Sun Nov 01, 2009 10:45 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2009-11-01T02:43:06+02:00</updated>

		<published>2009-11-01T02:43:06+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3321&amp;p=11709#p11709</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3321&amp;p=11709#p11709"/>
		<title type="html"><![CDATA[Re: Could not find USB device &quot;LEDControl&quot; vid=0x16c0 pid=0x5dc]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3321&amp;p=11709#p11709"><![CDATA[
I have a problem width this example too. After make hex and write it to device I see usb device installation dialog. But where I can find driver for this installation?<p>Statistics: Posted by Guest — Sun Nov 01, 2009 2:43 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[errorex]]></name></author>
		<updated>2009-10-28T18:00:22+02:00</updated>

		<published>2009-10-28T18:00:22+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3321&amp;p=11644#p11644</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3321&amp;p=11644#p11644"/>
		<title type="html"><![CDATA[Re: Could not find USB device &quot;LEDControl&quot; vid=0x16c0 pid=0x5dc]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3321&amp;p=11644#p11644"><![CDATA[
I give-up the led control and i using the example hid-data and it´s working good now... thanks for your reply.<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=2897">errorex</a> — Wed Oct 28, 2009 6:00 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[christian]]></name></author>
		<updated>2009-10-04T12:03:03+02:00</updated>

		<published>2009-10-04T12:03:03+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3321&amp;p=11197#p11197</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3321&amp;p=11197#p11197"/>
		<title type="html"><![CDATA[Re: Could not find USB device &quot;LEDControl&quot; vid=0x16c0 pid=0x5dc]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3321&amp;p=11197#p11197"><![CDATA[
This is a problem with your device. Probably something with the wiring, with the zener diodes or with the fuses. Did you compile for the Mega8? I think the hex files which ship with the examples are compiled for the Mega168.<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=8">christian</a> — Sun Oct 04, 2009 12:03 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[errorex]]></name></author>
		<updated>2009-10-01T20:19:49+02:00</updated>

		<published>2009-10-01T20:19:49+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=3321&amp;p=11162#p11162</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=3321&amp;p=11162#p11162"/>
		<title type="html"><![CDATA[Could not find USB device &quot;LEDControl&quot; vid=0x16c0 pid=0x5dc]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=3321&amp;p=11162#p11162"><![CDATA[
sorry my english<br />I am triying to understand how the cunstom-class example works... i programmed a atmega8 with the firmware, put on my pc usb port but when execute de host program show the message.<br /><br />&quot;Could not find USB device &quot;LEDControl&quot; with vid=0x16c0 pid=0x5dc&quot;<br /><br />I don´t know if i have to intall some driver or how its really works...<br /><br />I using windows xp, I compile the firmware with winavr, and the host software with code::blocks...<br /><br />Somebody can help me???<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=2897">errorex</a> — Thu Oct 01, 2009 8:19 pm</p><hr />
]]></content>
	</entry>
	</feed>
