<?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=7257" />

<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>2011-06-17T13:05:12+01:00</updated>

<author><name><![CDATA[RoboSavvy Forum]]></name></author>
<id>http://forum.robosavvy.com/feed.php?f=5&amp;t=7257</id>
<entry>
<author><name><![CDATA[Fritzoid]]></name></author>
<updated>2011-06-17T13:05:12+01:00</updated>
<published>2011-06-17T13:05:12+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=7257&amp;p=31524#p31524</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=7257&amp;p=31524#p31524"/>
<title type="html"><![CDATA[Motion File Editing Issue]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=7257&amp;p=31524#p31524"><![CDATA[
Hi MOHIT,<br /><br />You have two options here.  You can use either the motion page repeat count or the next page number.  The question is do you want to run the cycle a fixed number of times or do you want to run it forever.  <br /><br />Say you want to run the cycle four times then go on to play motion page seven.  You would set the repeat count to 4 and the next page number to 7.  If you just want to run the motion five times then stop you would set the repeat count to 5 and the next page number to 0.<br /><br />However if you want to run the loop continuously you would set the repeat count to 1 and set the next page number to itself, the current page number.  The motion would then run over and over until you sent an EXIT or STOP command.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=438">Fritzoid</a> — Fri Jun 17, 2011 1:05 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[MOHIT JINDAL]]></name></author>
<updated>2011-06-16T17:18:40+01:00</updated>
<published>2011-06-16T17:18:40+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=7257&amp;p=31521#p31521</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=7257&amp;p=31521#p31521"/>
<title type="html"><![CDATA[Motion File Editing Issue]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=7257&amp;p=31521#p31521"><![CDATA[
Hi Fritzoid,<br />One motion page has 7 steps.<br />When i play it starts from step 0 and stop at step 7.<br />Is there any way to repeat the steps ? 0 to 7 and then 7 to again 0 in same motion page  <img src="http://forum.robosavvy.com/images/smilies/icon_rolleyes.gif" alt=":roll:" title="Rolling Eyes" />  Like a circle. <img src="http://forum.robosavvy.com/images/smilies/icon_lol.gif" alt=":lol:" title="Laughing" /><p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2428">MOHIT JINDAL</a> — Thu Jun 16, 2011 5:18 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Fritzoid]]></name></author>
<updated>2011-06-08T12:39:46+01:00</updated>
<published>2011-06-08T12:39:46+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=7257&amp;p=31477#p31477</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=7257&amp;p=31477#p31477"/>
<title type="html"><![CDATA[Motion File Editing Issue]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=7257&amp;p=31477#p31477"><![CDATA[
If you can load the file into RoboPlus Motion then the check sum should be correct.  If not you will need to modify the file outside of RoboPlus.<br /><br />Depending on your level of expertise, here are your options.<br /><br />Edit the file by hand using a hex editor after recalculating the check sum with a simple program.<br /><br />If your a java programmer you can download my MotionEdit source code and get it running on you system.  This code reads and writes motion files and can be easily adapted to your situation.<br /><br />Finally, you can upload the file to your files area (after zipping it of course) and I can run it through program for you.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=438">Fritzoid</a> — Wed Jun 08, 2011 12:39 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Fritzoid]]></name></author>
<updated>2011-06-07T18:06:28+01:00</updated>
<published>2011-06-07T18:06:28+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=7257&amp;p=31466#p31466</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=7257&amp;p=31466#p31466"/>
<title type="html"><![CDATA[Motion File Editing Issue]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=7257&amp;p=31466#p31466"><![CDATA[
Hi bbulug,<br /><br />There are at least three things the download routine is looking at to determine if the motion file is valid.<br /><br />1. The file must start with the hexadecimal string 0xEFBBBF.<br /><br />2. Strings &quot;type=motion&quot; and &quot;version=1.01&quot; must follow that.<br /><br />3. A two-byte check sum must appear at the end of the file.<br /><br />See the following post for details <a href="http://robosavvy.com/forum/viewtopic.php?t=7184" class="postlink">http://robosavvy.com/forum/viewtopic.php?t=7184</a><br /><br />You will need a hex editor to examine the binary fields.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=438">Fritzoid</a> — Tue Jun 07, 2011 6:06 pm</p><hr />
]]></content>
</entry>
</feed>