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

	<title>Objective Development Forums</title>
	
	<link href="https://forums.obdev.at/index.php" />
	<updated>2008-10-23T03:14:17+02:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2008-10-23T03:14:17+02:00</updated>

		<published>2008-10-23T03:14:17+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=1399&amp;p=6470#p6470</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=1399&amp;p=6470#p6470"/>
		<title type="html"><![CDATA[How to wakeup PC?]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=1399&amp;p=6470#p6470"><![CDATA[
How to use this code, can give an example, thank you!<p>Statistics: Posted by Guest — Thu Oct 23, 2008 3:14 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sooloom]]></name></author>
		<updated>2008-04-24T11:11:36+02:00</updated>

		<published>2008-04-24T11:11:36+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=1399&amp;p=5168#p5168</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=1399&amp;p=5168#p5168"/>
		<title type="html"><![CDATA[How to wakeup PC?]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=1399&amp;p=5168#p5168"><![CDATA[
OK,Thanks!<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=1032">Sooloom</a> — Thu Apr 24, 2008 11:11 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[christian]]></name></author>
		<updated>2008-04-24T09:49:14+02:00</updated>

		<published>2008-04-24T09:49:14+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=1399&amp;p=5167#p5167</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=1399&amp;p=5167#p5167"/>
		<title type="html"><![CDATA[How to wakeup PC?]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=1399&amp;p=5167#p5167"><![CDATA[
Sorry, what I have posted is NOT correct. I've re-read the spec and the resume signal is a differential &quot;1&quot;, not SE0. The code should therefore look like this:<br /><div class="codebox"><p>Code: </p><pre><code>    cli&#40;&#41;;<br />    USBOUT |= _BV&#40;USB_CFG_DPLUS_BIT&#41;;<br />    USBDDR |= _BV&#40;USB_CFG_DPLUS_BIT&#41; | _BV&#40;USB_CFG_DMINUS_BIT&#41;;<br />    _delay_ms&#40;5&#41;;  /* spec says min 1 ms, max 15 ms */<br />    USBDDR &amp;= ~&#40;_BV&#40;USB_CFG_DPLUS_BIT&#41; | _BV&#40;USB_CFG_DMINUS_BIT&#41;&#41;;<br />    USBOUT &amp;= ~_BV&#40;USB_CFG_DPLUS_BIT&#41;;<br />    sei&#40;&#41;;<br /></code></pre></div><p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=8">christian</a> — Thu Apr 24, 2008 9:49 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sooloom]]></name></author>
		<updated>2008-04-24T07:37:43+02:00</updated>

		<published>2008-04-24T07:37:43+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=1399&amp;p=5164#p5164</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=1399&amp;p=5164#p5164"/>
		<title type="html"><![CDATA[How to wakeup PC?]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=1399&amp;p=5164#p5164"><![CDATA[
I have test this way to wakeup my Computer,but has a problem,when i back to windows from standby mode, my keyboard and my mouse no response,how to solute?<br /><br />I know this way not a standard wakeup mode,i want to use set feature and clear feature to realize the remote wakeup ,how to do?<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=1032">Sooloom</a> — Thu Apr 24, 2008 7:37 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[christian]]></name></author>
		<updated>2008-04-23T16:50:38+02:00</updated>

		<published>2008-04-23T16:50:38+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=1399&amp;p=5155#p5155</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=1399&amp;p=5155#p5155"/>
		<title type="html"><![CDATA[How to wakeup PC?]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=1399&amp;p=5155#p5155"><![CDATA[
You must generate a USB reset condition to wake up the PC. This is done with<br /><br /><div class="codebox"><p>Code: </p><pre><code>    usbDeviceDisconnect&#40;&#41;;<br />    _delay_ms&#40;10&#41;;<br />    usbDeviceConnect&#40;&#41;;<br /></code></pre></div><br /><br />You should only generate the reset if the PC is really in sleep mode. You can find out by checking for start of frame pulses on D-.<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=8">christian</a> — Wed Apr 23, 2008 4:50 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Sooloom]]></name></author>
		<updated>2008-04-23T08:21:50+02:00</updated>

		<published>2008-04-23T08:21:50+02:00</published>
		<id>https://forums.obdev.at/viewtopic.php?t=1399&amp;p=5148#p5148</id>
		<link href="https://forums.obdev.at/viewtopic.php?t=1399&amp;p=5148#p5148"/>
		<title type="html"><![CDATA[How to wakeup PC?]]></title>

		
		<content type="html" xml:base="https://forums.obdev.at/viewtopic.php?t=1399&amp;p=5148#p5148"><![CDATA[
I use infrahid on my Computer ,but i couldn't to wakeup pc when PC standby or Poweron,how to do ?help<p>Statistics: Posted by <a href="https://forums.obdev.at/memberlist.php?mode=viewprofile&amp;u=1032">Sooloom</a> — Wed Apr 23, 2008 8:21 am</p><hr />
]]></content>
	</entry>
	</feed>
