<?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=15&amp;t=3642" />

<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>2009-06-29T16:34:08+01:00</updated>

<author><name><![CDATA[RoboSavvy Forum]]></name></author>
<id>http://forum.robosavvy.com/feed.php?f=15&amp;t=3642</id>
<entry>
<author><name><![CDATA[PedroR]]></name></author>
<updated>2009-06-29T16:34:08+01:00</updated>
<published>2009-06-29T16:34:08+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3642&amp;p=20502#p20502</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3642&amp;p=20502#p20502"/>
<title type="html"><![CDATA[RoboBuilder Serial Code and Motion file download problems]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3642&amp;p=20502#p20502"><![CDATA[
Hey guys<br /><br />Nice work on reverse engineering!! <img src="http://forum.robosavvy.com/images/smilies/icon_smile.gif" alt=":)" title="Smile" /> <br /><br />I was aware of this issue NovaOne had but I was unable to help as I've been really busy with a new product we're receiving - an arduino based wheeled robot. (quite cool btw I don't know if you're into Arduino but what I like about this kit is that it does pose a nice offer in terms of a kit: it's not just one more arduino prototyping board; it's a kit with DC motors, some sensors and the nice arduino board so you can play a lot more with it.)<br /><br />Have you also got more information on the memory mappings of the EEPROM?<br />Have you managed to figure what what is exactly at each address?<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1061">PedroR</a> — Mon Jun 29, 2009 4:34 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[NovaOne]]></name></author>
<updated>2009-06-26T15:04:48+01:00</updated>
<published>2009-06-26T15:04:48+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3642&amp;p=20464#p20464</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3642&amp;p=20464#p20464"/>
<title type="html"><![CDATA[RoboBuilder Serial Code and Motion file download problems]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3642&amp;p=20464#p20464"><![CDATA[
l3v3rz: Thanks for the updated program  <img src="http://forum.robosavvy.com/images/smilies/icon_smile.gif" alt=":)" title="Smile" /> <br /><br />i-Bot: Thanks for sending me the fix for my corrupted eeprom.  <img src="http://forum.robosavvy.com/images/smilies/icon_biggrin.gif" alt=":D" title="Very Happy" /><br /><br />You were both right!<br /><br /><span style="font-weight: bold"><br />NB: for anyone else who might have a similar problem:<br /><br />Motion Builder reported: &quot;No SerialCode&quot; and Download Tool reported &quot;Serial Code Not Match&quot;......this was due to a single byte in my RBC serial number being corrupted which is stored on the RBC eeprom. </span><p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=663">NovaOne</a> — Fri Jun 26, 2009 3:04 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[l3v3rz]]></name></author>
<updated>2009-06-24T23:46:33+01:00</updated>
<published>2009-06-24T23:46:33+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3642&amp;p=20416#p20416</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3642&amp;p=20416#p20416"/>
<title type="html"><![CDATA[RoboBuilder Serial Code and Motion file download problems]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3642&amp;p=20416#p20416"><![CDATA[
OK - Sorry there's a bug in the serial number print routine <br /><br />the lines<br /><dl class="codebox"><dt>Code: </dt><dd><code>                    textBox1.AppendText&#40;&quot;S/N=&quot;&#41;;<br />                    for &#40;int n0 = 0; n0 &lt; 13; n0++&#41;<br />                        textBox1.AppendText&#40;Convert.ToString&#40;&#40;char&#41;respnse&#91;13 + n0&#93;&#41;&#41;;<br />                    textBox1.AppendText&#40;&quot;\r\n&quot;&#41;;</code></dd></dl><br /><br />should read<br /><br /><dl class="codebox"><dt>Code: </dt><dd><code>                    textBox1.AppendText&#40;&quot;S/N=&quot;&#41;;<br />                    for &#40;int n0 = 0; n0 &lt; 13; n0++&#41;<br />                        textBox1.AppendText&#40;Convert.ToString&#40;&#40;char&#41;respnse&#91;14 + n0&#93;&#41;&#41;;<br />                    textBox1.AppendText&#40;&quot;\r\n&quot;&#41;;</code></dd></dl><br /><br />I'll upload an update very shortly. [Here: <a href="http://robosavvy.com/Builders/l3v3rz/PCControlMode0.2.1.1.zip" class="postlink">http://robosavvy.com/Builders/l3v3rz/PCControlMode0.2.1.1.zip</a>] As i-bot says the only impact is to miss the last digit. Since their ascii codes I'm not sure how you could get negative numbers.  <br /><br />I have written a small piece of code to reset my S/N as it was corrupted (by me).  The code is quite simple, but has to be loaded into the bootloader - and run (i added it temporarily to the homebrew OS.)<br /><br /><dl class="codebox"><dt>Code: </dt><dd><code><br />uint8_t EEMEM FIRMWARE&#91;64&#93;;     <br /><br /><br />void fix&#40;&#41;<br />&#123;<br />   uint8_t fixb&#91;&#93; = &#123;0, ...... &lt;put&gt;49 etc  ..........&gt;,  0,0,0,0 &#125;;<br />      <br />   for &#40;int i=0; i&lt;16; i++&#41;<br />   &#123;<br />      eeprom_write_byte&#40;FIRMWARE+i, fixb&#91;i&#93;&#41;;<br />   &#125;<br />   rprintf &#40;&quot;fixed\r\n&quot;&#41;;<br />&#125;</code></dd></dl><br /><br /><br /><br />good luck<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1101">l3v3rz</a> — Wed Jun 24, 2009 11:46 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[i-Bot]]></name></author>
<updated>2009-06-24T22:27:29+01:00</updated>
<published>2009-06-24T22:27:29+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3642&amp;p=20413#p20413</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3642&amp;p=20413#p20413"/>
<title type="html"><![CDATA[RoboBuilder Serial Code and Motion file download problems]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3642&amp;p=20413#p20413"><![CDATA[
I had not tried the l3v3rz code. When I do, I get a 12 digit code which is missing my 13th digit. The first 12 are correct.<br /><br />The Trossen utilility shows my serial OK<br /><br />All the .rbm files I have have 13 zeros in the serial number.<br /><br />What error do you get if the files are not accepted ?<br /><br /><br />I do not know if the serial is in chip EEPROM or external. l3v3rz may help. I wonder if the EEPROM is corrupted.<br /><br />Don't worry, we will get you fixed for Saturday<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=159">i-Bot</a> — Wed Jun 24, 2009 10:27 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[NovaOne]]></name></author>
<updated>2009-06-24T19:52:33+01:00</updated>
<published>2009-06-24T19:52:33+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3642&amp;p=20403#p20403</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3642&amp;p=20403#p20403"/>
<title type="html"><![CDATA[RoboBuilder Serial Code and Motion file download problems]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3642&amp;p=20403#p20403"><![CDATA[
All RBC Serial Codes are 13 digits long.<br /><br />However when I use l3v3rz 's program:<br /><a href="http://robosavvy.com/Builders/l3v3rz/PCControlMode0.21.zip" class="postlink">http://robosavvy.com/Builders/l3v3rz/PCControlMode0.21.zip</a><br /><br />....... I am missing the first and last digits of my serial code.<br /><br />l3v3rz....I am not saying there is any thing wrong with you program....I think the fault is with my RBC, because Motion Builder and Download Tool are both refusing to accept files downloaded under my correct Serial Code from RoboBuilder..NB I have also tried a similar program from Trossen that reports even more weird negative numbers???<br /><br /><br />Please help, I am trying to prepare for the UK Saturday Event..... <img src="http://forum.robosavvy.com/images/smilies/icon_cry.gif" alt=":cry:" title="Crying or Very sad" /><p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=663">NovaOne</a> — Wed Jun 24, 2009 7:52 pm</p><hr />
]]></content>
</entry>
</feed>