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

<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>2010-03-16T21:30:35+01:00</updated>

<author><name><![CDATA[RoboSavvy Forum]]></name></author>
<id>http://forum.robosavvy.com/feed.php?f=15&amp;t=3379</id>
<entry>
<author><name><![CDATA[l3v3rz]]></name></author>
<updated>2010-03-16T21:30:35+01:00</updated>
<published>2010-03-16T21:30:35+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25936#p25936</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25936#p25936"/>
<title type="html"><![CDATA[Sample C Coding files and instructions for Robobuilder 57xx]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25936#p25936"><![CDATA[
I think the compiler is right !  Surely gpT_Table points to an array so you want :<br /><br />BYTE flash gpTable[][];<br /><br />or possibly<br /><br />BYTE flash gpTable[][16];<br /><br />alternatively try casting it: <br /><br />gpT_Table = (BYTE flash *)HUNOBASIC_GETUPFRONT_Torque; <br /><br /><br />Bit disappointing the tutorial doesn't work out of the box ....  I've never tried it as I don't want to fork out for full version CV AVR (150 Euros)<br /><br />Good luck - I see you trying my L# maze prog as well - so much easier to use. (and free)<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1101">l3v3rz</a> — Tue Mar 16, 2010 9:30 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[ebrand]]></name></author>
<updated>2010-03-16T06:17:55+01:00</updated>
<published>2010-03-16T06:17:55+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25925#p25925</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25925#p25925"/>
<title type="html"><![CDATA[Sorry to post again!]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25925#p25925"><![CDATA[
Sorry to post again, but after more research I am able to post a more specific question. The C code that is the problem is as follows:<br /><br /><br /><dl class="codebox"><dt>Code: </dt><dd><code>    if&#40;F_PF == PF1_HUNO&#41;&#123;<br />        switch&#40;BtnCode&#41;&#123;<br />            case BTN_A:<br />                 SendToSoundIC&#40;7&#41;;<br />                gpT_Table    = HUNOBASIC_GETUPFRONT_Torque;<br />                ....<br />                break;</code></dd></dl><br /><br />gpT_Table is defined as follows:<br /><dl class="codebox"><dt>Code: </dt><dd><code>BYTE flash    *gpT_Table;</code></dd></dl><br /><br />HUNOBASIC_GETUPFRONT_Torque is defined as follows:<br /><dl class="codebox"><dt>Code: </dt><dd><code>unsigned char flash HUNOBASIC_GETUPFRONT_Torque&#91;9&#93;&#91;16&#93;=&#123;<br />   /* ID<br />       0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15 */<br />   &#123;   4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4 &#125;,   // Idx:0 - Data_0<br />   &#123;   1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  4,  4,  4,  4,  4,  4 &#125;,   // Idx:1 - Data_1<br />   &#123;   4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4 &#125;,   // Idx:2 - Data_2<br />   &#123;   1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1 &#125;,   // Idx:3 - Data_3<br />   &#123;   1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1,  1 &#125;,   // Idx:4 - Data_4<br />   &#123;   2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2 &#125;,   // Idx:5 - Data_5<br />   &#123;   2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2 &#125;,   // Idx:6 - Data<br />   &#123;   2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2,  2 &#125;,   // Idx:7 - Data_6<br />   &#123;   4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4,  4 &#125;    // Idx:8 - Data_7<br />&#125;;</code></dd></dl><br /><br /><br />I am getting the following error:<br /><br />Error: C:\Users\emily\Documents\Robotics\C_Tutorial_Source-1\Project\maze\maze.c(2393): a value of type 'flash unsigned char [9][16]' can't be assigned to an entity of type 'flash unsigned char *'<br /><br />So it seems the code is trying to make a char * = to an array. Is there some way I can make the code actually make sense?<br /><br />Thanks!<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2020">ebrand</a> — Tue Mar 16, 2010 6:17 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[ebrand]]></name></author>
<updated>2010-03-16T04:06:35+01:00</updated>
<published>2010-03-16T04:06:35+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25923#p25923</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25923#p25923"/>
<title type="html"><![CDATA[just combined all of the files]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25923#p25923"><![CDATA[
I gave up on trying to link all the files together and just put them all in main.c. The problem I'm getting now is the following:<br /><br />Error: C:\...\maze.c(2391): a value of type 'flash unsigned char [9][16]' can't be assigned to an entity of type 'flash unsigned char *'<br /><br />Anyone else have this problem or know how to fix it?<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2020">ebrand</a> — Tue Mar 16, 2010 4:06 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[ebrand]]></name></author>
<updated>2010-03-16T00:05:35+01:00</updated>
<published>2010-03-16T00:05:35+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25915#p25915</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25915#p25915"/>
<title type="html"><![CDATA[CodeVision Version]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25915#p25915"><![CDATA[
I am using CodeVisionAVR 2.04.4a Advanced. So how do I get the structs to be external then? I was able to get rid of all of the errors except for ones revolving around structs. I still have a bit of trouble with scopes in C.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2020">ebrand</a> — Tue Mar 16, 2010 12:05 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[l3v3rz]]></name></author>
<updated>2010-03-15T23:35:33+01:00</updated>
<published>2010-03-15T23:35:33+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25914#p25914</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25914#p25914"/>
<title type="html"><![CDATA[Sample C Coding files and instructions for Robobuilder 57xx]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25914#p25914"><![CDATA[
Are you using the full version of CV AVR V2 ?  or the evaluation edition ?- its 3K limit I think causes problems when you link.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1101">l3v3rz</a> — Mon Mar 15, 2010 11:35 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[i-Bot]]></name></author>
<updated>2010-03-15T23:29:24+01:00</updated>
<published>2010-03-15T23:29:24+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25913#p25913</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25913#p25913"/>
<title type="html"><![CDATA[Sample C Coding files and instructions for Robobuilder 57xx]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25913#p25913"><![CDATA[
I have not used codevision, but it should work OK for your project.<br /><br />The codevision early versions compiled all source .c file simultaneously, so there was no need to define variables in files as external. Later versions complile the .c file seperate, so you might get problems as you describe. You need to define the global variables giving a problem as extern in the comm.c , so they are resolved later by the linker.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=159">i-Bot</a> — Mon Mar 15, 2010 11:29 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[ebrand]]></name></author>
<updated>2010-03-15T21:38:18+01:00</updated>
<published>2010-03-15T21:38:18+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25911#p25911</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25911#p25911"/>
<title type="html"><![CDATA[undefined symbol 'g10MSEC']]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=25911#p25911"><![CDATA[
I am currently using CodeVisionAVR and cannot get rid of the following error without changing the code. Its like my c files aren't connecting with my main file during build:<br /><br />Error: C:\...\robobuilder_2nd_Ccode\src\comm.c(55): undefined symbol 'g10MSEC'<br />Error: C:\...\src\comm.c(88): undefined symbol 'gTx0Buf'<br /><br />Any ideas what I could be doing wrong? I get this error in the first and second versions of the C code tutorials. <br /><br />My goal is to get Robobuilder to go through a maze using just the chip and not his bluetooth or the serial port. If it is completely hopeless trying to use the C code from the tutorial, will the library built by the community work for a maze?<br /><br />Thanks in advance!<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2020">ebrand</a> — Mon Mar 15, 2010 9:38 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[limor]]></name></author>
<updated>2009-10-14T10:32:35+01:00</updated>
<published>2009-10-14T10:32:35+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=22279#p22279</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=22279#p22279"/>
<title type="html"><![CDATA[Sample C Coding files and instructions for Robobuilder 57xx]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=22279#p22279"><![CDATA[
<span style="color: green">Robobuilder has released the SOURCE CODE for their firmware</span>.<br />The code is available here <br /><!-- m --><a class="postlink" href="http://robosavvy.com/RoboSavvyPages/Robobuilder/RoboBuilder_2nd_C_Source.zip">http://robosavvy.com/RoboSavvyPages/Rob ... Source.zip</a><!-- m --><br /><br />and implements almost all the features in the firmware:<br />- Included &quot;HUNO, DINO, DOGY&quot; basic motions <br />- Included Battery charging function <br />- Supported RBC protocols <br />- Zero position <br />- PC control mode <br />- Read firmware version <br />- Run Motion <br />- Play Sound <br />- Read Distance <br />- Read Sound Input <br />- Read Button Input <br />- Read Acceleration sensor value <br /><br /><br /><span style="color: green">Following up to the release of the source code, they have release  a 70-page document describing the C development environment and API together with 10 detailed projects.</span><br /><br /><!-- m --><a class="postlink" href="http://robosavvy.com/RoboSavvyPages/Robobuilder/C_Tutorial_Source.zip">http://robosavvy.com/RoboSavvyPages/Rob ... Source.zip</a><!-- m --><br /><br /><img src="http://robosavvy.com/Builders/limor/robobuilder-c-programming1.jpg" alt="Image" /><p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2">limor</a> — Wed Oct 14, 2009 10:32 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[PedroR]]></name></author>
<updated>2009-03-02T02:13:21+01:00</updated>
<published>2009-03-02T02:13:21+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19310#p19310</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19310#p19310"/>
<title type="html"><![CDATA[Sample C Coding files and instructions for Robobuilder 57xx]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19310#p19310"><![CDATA[
there is an added level of complexity here which is the cases where we are querying an inexistent/disconnected servo.<br /><br />let's say I query the position of servo 1. I send the packet and wait for a response with 2 bytes.<br />In case servo 1 is disconnected those 2 bytes will never arrive hence locking the program.... maybe a conservative timeout solves this problem. please be aware that depending on the instruction you send the delay between sending the packet and getting the response is different.<br /><br />Page 25 of the wCk manual details that. I believe the longest is 121145 but they don't mention which units this is....<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1061">PedroR</a> — Mon Mar 02, 2009 2:13 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[l3v3rz]]></name></author>
<updated>2009-03-02T01:24:33+01:00</updated>
<published>2009-03-02T01:24:33+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19309#p19309</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19309#p19309"/>
<title type="html"><![CDATA[Sample C Coding files and instructions for Robobuilder 57xx]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19309#p19309"><![CDATA[
OK - thanks for that.<br /><br />I've now two variants of theat command, 'x' (lowercase) that waits for and displays a response, and 'X' (uppercase) that just sends with no wait. I'm begining to look at charging but its complex as you must ensure the battery is not overcharged as it can overheat and cause damage - hence my caution.<br /><br />hex file for r15 is now available from the <!-- m --><a class="postlink" href="http://code.google.com/p/robobuilderlib">http://code.google.com/p/robobuilderlib</a><!-- m --><br /><br />If also created a second project called robobuildervc that has my .NET code based client.<br /><br />regards<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1101">l3v3rz</a> — Mon Mar 02, 2009 1:24 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[PedroR]]></name></author>
<updated>2009-03-01T21:15:00+01:00</updated>
<published>2009-03-01T21:15:00+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19307#p19307</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19307#p19307"/>
<title type="html"><![CDATA[Sample C Coding files and instructions for Robobuilder 57xx]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19307#p19307"><![CDATA[
hey l3v3rz<br /><br />Your API proposal seems a lot better/simpler <img src="http://forum.robosavvy.com/images/smilies/icon_smile.gif" alt=":)" title="Smile" /><br /><br />With regards to the number of bytes returned please note it is not always 2.<br />IF the instruction returns a packet, it is 2 bytes always.<br />BUT there are instructions that do not return any packet: in particular the Synchronized Position move and the Runtime Speed Set.<br />A summary of this can be found on the last page (71) of the wCK manual. <br />The right column in the table shows which packets are returned by the instructions (and what is their meaning).<br /><br />Thank you very much for all your work and support.<br />I will probably port my wCK DLL library and Remocon DLL to your new firmware and merge them in a super class <img src="http://forum.robosavvy.com/images/smilies/icon_idea.gif" alt=":idea:" title="Idea" /> <br /><br />I think that once support for this is added the only thing missing to make a full, much improved firmware, is a battery charging routine right?<br />I found some data on that here <!-- m --><a class="postlink" href="http://www.edaboard.com/ftopic273063.html">http://www.edaboard.com/ftopic273063.html</a><!-- m --> but I can't really understand most of it though......<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1061">PedroR</a> — Sun Mar 01, 2009 9:15 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[l3v3rz]]></name></author>
<updated>2009-03-01T01:05:25+01:00</updated>
<published>2009-03-01T01:05:25+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19302#p19302</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19302#p19302"/>
<title type="html"><![CDATA[Sample C Coding files and instructions for Robobuilder 57xx]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19302#p19302"><![CDATA[
The servobus should be straightforward.  Might change the API a bit to simply<br /><br />X0421222324 = Xtranmit 4 bytes, 21,22,23,24<br /><br />I think the response is always 2 bytes<br /><br />Look for it in the next release in the next few days <br /><br />The blob stuff sounds good, I use the Aforge to capture the image from the webcam and was looking to use its template library, but I'll post my .NET code soon as well<br /><br />cheers<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1101">l3v3rz</a> — Sun Mar 01, 2009 1:05 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[PedroR]]></name></author>
<updated>2009-02-28T23:44:25+01:00</updated>
<published>2009-02-28T23:44:25+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19301#p19301</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19301#p19301"/>
<title type="html"><![CDATA[Sample C Coding files and instructions for Robobuilder 57xx]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19301#p19301"><![CDATA[
hi l3v3rz<br /><br />If you'd like I can work on a PC library to make simple BLOB detection.<br />I have already collected a lot of material as I wanted to do that myself and can code it in relatively short time.<br />My idea would be to set a colour to look for and tolerance threshold and return the blobs that are found. That's the way the HaViMo camera for Bioloid does it and it's fairly successfully in Robot Soccer.<br /><br />Also, if there was the possibility to add an instruction to the firmware that let us talk to the servo bus that would be excellent. Something like the PC Control Mode of the native firmware.<br />I don't really have the expertise on ATMEGA 128 to do it otherwise I would contribute it myself.<br /><br />Either implement an instruction to change it to full pc control mode or  implement and instruction that sends the specified bytes and returns the number of bytes we want (IDEAL).<br />Lets say, a command like<br />servobus 0x21 0x23 0x26 0x78, 2<br />This would tell it to put bytes 0x21 0x23 0x26 0x78 and then return the next &quot;2&quot; bytes received (which would be the answer)<br />I would need to establish a timeout in case we are querying an in existent servo (which will never return the expected 2 bytes) but other than that it would really unleash a LOT of power in terms of sharing the control between the ATMEGA and the PC.<br /><br />More complex stuff could then be done without the need to revert back to the native firmware like changing servo id's,setting up PID gains, querying servos, etc etc<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1061">PedroR</a> — Sat Feb 28, 2009 11:44 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[PedroR]]></name></author>
<updated>2009-02-28T16:16:29+01:00</updated>
<published>2009-02-28T16:16:29+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19296#p19296</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19296#p19296"/>
<title type="html"><![CDATA[Sample C Coding files and instructions for Robobuilder 57xx]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19296#p19296"><![CDATA[
Hi all<br /><br />Sorry if I generated any confusion.<br />It was not my intention at all.<br /><br />I had not understood that this was the base of your code.<br />Every time I installed Robobuilder software I downloaded the latest version from the Website. It was only yesterday that I performed a full install from a CD and discovered this.....<br /><br />I didn't realize this was already the base of your code.<br /><br />Anyway, I will keep the post here just as a mention to &quot;the original/official implementation&quot; but I will edit the post to mention your own customized/extended versions.<br /><br />Thanks and once again I apologise if I generated any confusion.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1061">PedroR</a> — Sat Feb 28, 2009 4:16 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[l3v3rz]]></name></author>
<updated>2009-02-28T16:10:10+01:00</updated>
<published>2009-02-28T16:10:10+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19295#p19295</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19295#p19295"/>
<title type="html"><![CDATA[Sample C Coding files and instructions for Robobuilder 57xx]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=3379&amp;p=19295#p19295"><![CDATA[
Yes, still very much based on i-bots port which has a major advantage that you can download the free open source tool chain. <br /><br />I've added  support for the PSD and the accelerometer and a simple terminal based menu interface. It now supports 18 different motions including some soccer related ones which I'm interested in trying to link with PC based webcam.<br /><br />There's now a google code project <a href="http://code.google.com/p/robobuilderlib/" class="postlink">http://code.google.com/p/robobuilderlib/</a> so its under version control. Any one who wants to join - just  send me or joe your google ID.  (Please join!!  <img src="http://forum.robosavvy.com/images/smilies/icon_smile.gif" alt=":)" title="Smile" /> )<br /><br />cheers<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1101">l3v3rz</a> — Sat Feb 28, 2009 4:10 pm</p><hr />
]]></content>
</entry>
</feed>