<?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="http://forum.robosavvy.com/feed.php?f=5&amp;t=1396" />

<title>RoboSavvy Forum</title>
<subtitle>Robosavvy Forum: The largest online community of Humanoid Robot Builders</subtitle>
<link href="http://forum.robosavvy.com/index.php" />
<updated>2007-05-23T22:02:04+01:00</updated>

<author><name><![CDATA[RoboSavvy Forum]]></name></author>
<id>http://forum.robosavvy.com/feed.php?f=5&amp;t=1396</id>
<entry>
<author><name><![CDATA[freeforall]]></name></author>
<updated>2007-05-23T22:02:04+01:00</updated>
<published>2007-05-23T22:02:04+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9213#p9213</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9213#p9213"/>
<title type="html"><![CDATA[Using two SYNC_WRITE instructions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9213#p9213"><![CDATA[
Actually, I've already tried this function but it didn't work and I can't figure out why. In delay.h, I replaced <span style="font-weight: bold">#define F_CPU 1000000UL</span> with <span style="font-weight: bold"># define F_CPU 16E6</span> but it doesn't work. I don't really know where the problem comes from. So if you have any ideas to help me I'd be grateful.<br /><br />Thank you<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=377">freeforall</a> — Wed May 23, 2007 10:02 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Bullit]]></name></author>
<updated>2007-05-23T11:28:50+01:00</updated>
<published>2007-05-23T11:28:50+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9211#p9211</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9211#p9211"/>
<title type="html"><![CDATA[Using two SYNC_WRITE instructions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9211#p9211"><![CDATA[
freeforall you might want to look<a href="http://hubbard.engr.scu.edu/avr/avrlib/docs/html/index.html" class="postlink">here</a> for some library functions.  <br />WinAVR contains a include delay.h you'll want to look at and _delay_ms function.  Make sure you define F_CPU to 16E6 for the CM-5. and before the include of delay.h.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=173">Bullit</a> — Wed May 23, 2007 11:28 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[freeforall]]></name></author>
<updated>2007-05-23T07:46:17+01:00</updated>
<published>2007-05-23T07:46:17+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9209#p9209</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9209#p9209"/>
<title type="html"><![CDATA[Using two SYNC_WRITE instructions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9209#p9209"><![CDATA[
yes I understood. but I don't know how to make a pause. there is no function for that. In &lt;windows&gt; for example there the function Sleep() but I can't use it for the Bioloid. If you know a function that I can use to make a pause please let me know.<br />thank you<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=377">freeforall</a> — Wed May 23, 2007 7:46 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[billyzelsnack]]></name></author>
<updated>2007-05-22T23:55:54+01:00</updated>
<published>2007-05-22T23:55:54+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9207#p9207</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9207#p9207"/>
<title type="html"><![CDATA[Using two SYNC_WRITE instructions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9207#p9207"><![CDATA[
Say you want to send this set of positions to a servo.<br /><br />100<br />500<br />100<br /><br />If you sent all 3 packets immediately the servo would pretty much skip the 500 because it never had any time to make it to 500. To &quot;pause&quot; you just wait before you send another packet.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=459">billyzelsnack</a> — Tue May 22, 2007 11:55 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[freeforall]]></name></author>
<updated>2007-05-22T22:46:25+01:00</updated>
<published>2007-05-22T22:46:25+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9205#p9205</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9205#p9205"/>
<title type="html"><![CDATA[Using two SYNC_WRITE instructions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9205#p9205"><![CDATA[
ok. But how can I pause? Is there any function for that?<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=377">freeforall</a> — Tue May 22, 2007 10:46 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[JonHylands]]></name></author>
<updated>2007-05-22T22:41:47+01:00</updated>
<published>2007-05-22T22:41:47+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9204#p9204</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9204#p9204"/>
<title type="html"><![CDATA[Using two SYNC_WRITE instructions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9204#p9204"><![CDATA[
It probably does, but if you don't give it time to move the servos to the position specified in the first, it will effectively just execute the second.<br /><br />You need to figure out how long it will take to move each servo to the new location, and pause that long before sending the next command.<br /><br />- Jon<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=373">JonHylands</a> — Tue May 22, 2007 10:41 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[freeforall]]></name></author>
<updated>2007-05-22T21:30:05+01:00</updated>
<published>2007-05-22T21:30:05+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9201#p9201</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9201#p9201"/>
<title type="html"><![CDATA[Using two SYNC_WRITE instructions]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=1396&amp;p=9201#p9201"><![CDATA[
Hello<br /><br />When I send two SYNC_WRITE instructions successively (in a C program), the Bioloid only executes the second one. <br /><br />Is there any way to make the robot execute the second instruction exactly after the end of the execution of the first one? <br /><br />Thank you.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=377">freeforall</a> — Tue May 22, 2007 9:30 pm</p><hr />
]]></content>
</entry>
</feed>