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

<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-02-23T19:35:04+01:00</updated>

<author><name><![CDATA[RoboSavvy Forum]]></name></author>
<id>http://forum.robosavvy.com/feed.php?f=5&amp;t=6832</id>
<entry>
<author><name><![CDATA[Fraser]]></name></author>
<updated>2011-02-23T19:35:04+01:00</updated>
<published>2011-02-23T19:35:04+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=30304#p30304</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=30304#p30304"/>
<title type="html"><![CDATA[AXONS - Homebrew firmware for AX12+ and CM510]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=30304#p30304"><![CDATA[
Hi Mohit,<br /><br />Sorry for the delayed reply, I have been busy with a house renovation project. And each evening I have just sat on the couch and vegged out without touching a PC.<br /><br />I have never used the dynamixel SDK so I would have to read the docs to help you and I don't have time, sorry.<br /><br />I suggest just building one of the Dynamixel SDK demo projects in visual studio and then when you get it working try adjusting things to see what happens. Then when you are familiar with how dynamixel commands work and the servos are responding correctly you can add your own stuff into a demo project easily.<br /><br />I don't know how the .mtn files are stored in CM510. They are probably converted to some more compact form and then squirted into the progmem above the robotis firmware. But for now you need not worry about .mtn and .tsk files. You should master the dynamixel SDK and try getting servos to move in sin waves etc. This will be the best path to take and will get you more familiar with coding.<br /><br />Keep hacking at it! You will feel great when you crack it! <img src="http://forum.robosavvy.com/images/smilies/icon_biggrin.gif" alt=":D" title="Very Happy" /><p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2470">Fraser</a> — Wed Feb 23, 2011 7:35 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[MOHIT JINDAL]]></name></author>
<updated>2011-02-16T09:27:36+01:00</updated>
<published>2011-02-16T09:27:36+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=30225#p30225</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=30225#p30225"/>
<title type="html"><![CDATA[Dynamixel Synchronization Control]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=30225#p30225"><![CDATA[
Thanks Fraser;<br /><br />Can you tell me which function in Dynamixel SDK is used to actually move the AX12 Dynamixels ?<br /><br /><dl class="codebox"><dt>Code: </dt><dd><code>for&#40; i=0; i&lt;NUM_ACTUATOR; i++ &#41;<br /><br />&#123;<br /><br />id&#91;i&#93; = i+1;<br /><br />phase&#91;i&#93; = 2*PI * &#40;float&#41;i / &#40;float&#41;NUM_ACTUATOR;<br /><br />&#125;<br /><br />// Set goal speed<br /><br />dxl_write_word&#40; BROADCAST_ID, P_GOAL_SPEED_L, 0 &#41;;<br /><br />// Set goal position<br /><br />dxl_write_word&#40; BROADCAST_ID, P_GOAL_POSITION_L, AmpPos &#41;;<br /><br />_delay_ms&#40;1000&#41;;<br /></code></dd></dl><br /><br />And in which format the task code and MTN files are loaded in CM510 ?<br />Are they loaded in HEX files in AVR256 or same .TSK and .MTN ?<br /><br />Thanks. <img src="http://forum.robosavvy.com/images/smilies/icon_smile.gif" alt=":)" title="Smile" /> [/code]<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2428">MOHIT JINDAL</a> — Wed Feb 16, 2011 9:27 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Fraser]]></name></author>
<updated>2011-02-15T14:34:03+01:00</updated>
<published>2011-02-15T14:34:03+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=30218#p30218</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=30218#p30218"/>
<title type="html"><![CDATA[Re: Usb2Dynamixel]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=30218#p30218"><![CDATA[
<blockquote><div><cite>MOHIT JINDAL wrote:</cite><br />Hi Fraser,<br />Your Axons have 18 .hex files to control 18 Ax12.<br />How I can link the .hex files to Visual C++ to control Bioloid From Pc using Usb2Dynamixel ?<br />Thanks. <img src="http://forum.robosavvy.com/images/smilies/icon_rolleyes.gif" alt=":roll:" title="Rolling Eyes" /><br /></div></blockquote><br /><br />Hi,<br /><br />I think you should start with robotis dynamixel SDK first and use the synch write command to control all of your servos. <br /><br />But if you want to experiment then try this:<br /><br />You program the servos with the HEX files. And then you send out packets from the PC to control the servos PWM.<br /><br />Remove one servo from your robot and program it with HEX file 1 from the Axons zipfile. The readme.pdf tells you how to program the servo.<br /><br />Connect it to your PC using usb2dynamixel.<br /><br />From your PC send out a PWM packet to this one servo.<br /><br />The format of the PWM packet is detailed in the readme.pdf included with the Axons zipfile.<br /><br />I posted some code for Miguel earlier in this thread that includes everything you need to send and receive packets from Axons.<br /><br />Do not try and install Axons on a humanoid robot until you are familiar with how it works, it is quite easy to cut your finger or damage cables if the robot goes crazy.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2470">Fraser</a> — Tue Feb 15, 2011 2:34 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[MOHIT JINDAL]]></name></author>
<updated>2011-02-12T06:24:19+01:00</updated>
<published>2011-02-12T06:24:19+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=30183#p30183</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=30183#p30183"/>
<title type="html"><![CDATA[Usb2Dynamixel]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=30183#p30183"><![CDATA[
Hi Fraser,<br />Your Axons have 18 .hex files to control 18 Ax12.<br />How I can link the .hex files to Visual C++ to control Bioloid From Pc using Usb2Dynamixel ?<br />Thanks. <img src="http://forum.robosavvy.com/images/smilies/icon_rolleyes.gif" alt=":roll:" title="Rolling Eyes" /><p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2428">MOHIT JINDAL</a> — Sat Feb 12, 2011 6:24 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Fraser]]></name></author>
<updated>2011-02-10T01:45:26+01:00</updated>
<published>2011-02-10T01:45:26+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=30157#p30157</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=30157#p30157"/>
<title type="html"><![CDATA[AXONS - Homebrew firmware for AX12+ and CM510]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=30157#p30157"><![CDATA[
Firmware dev is on hold due to other coding commitments, but here's a short vid showing some sinusoid based motion using the currently released version of firmware:<br /><br /><div class='bbmedia' data-url='http://www.youtube.com/watch?v=haq1Os7odEw' style='margin: 1px; display: inline-block; vertical-align: bottom;'><div style='width: 200px; height: 40px; border: 1px solid #999; display: table-cell; text-align: center; vertical-align: middle; font: 10px/10px Verdana; color: #555; opacity: 0.5;'><a style='color: #105289; text-decoration: none;' href='http://phpbbex.com/' target='_blank'>phpBB</a> &#91;media&#93;</div><script>if (typeof bbmedia == 'undefined') { bbmedia = true; var e = document.createElement('script'); e.async = true; e.src = 'js/bbmedia.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(e, s); }</script></div><p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2470">Fraser</a> — Thu Feb 10, 2011 1:45 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Fraser]]></name></author>
<updated>2011-01-21T23:13:13+01:00</updated>
<published>2011-01-21T23:13:13+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29888#p29888</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29888#p29888"/>
<title type="html"><![CDATA[AXONS - Homebrew firmware for AX12+ and CM510]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29888#p29888"><![CDATA[
Thanks SK! that makes sense. I'll put in a set threshold command for voltages and temp and work toward straightening out the temp reading. I've been close to buying one of those red laser non contact thermometers in the past now I have a good excuse <img src="http://forum.robosavvy.com/images/smilies/icon_smile.gif" alt=":)" title="Smile" /><br /><br />edit: I hope when my sons (1 + 3) get older that I can attend some robo comps with them, that would be cool! Perhaps by then there will be some big compos held in europe.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2470">Fraser</a> — Fri Jan 21, 2011 11:13 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[SK]]></name></author>
<updated>2011-01-21T15:33:23+01:00</updated>
<published>2011-01-21T15:33:23+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29882#p29882</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29882#p29882"/>
<title type="html"><![CDATA[AXONS - Homebrew firmware for AX12+ and CM510]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29882#p29882"><![CDATA[
<blockquote><div><cite>Fraser wrote:</cite><br />edit:<br />I can't think of any reason to have adjustable safety limit for temperature, but there must be one.<br /></div></blockquote><br />That's quite easy: During testing and development you might not want to overstress servos and let them get too hot. If you have your robot take part in a competition OTOH, you might accept some overheating, because you can't afford a servo shutting down at that point in time.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=212">SK</a> — Fri Jan 21, 2011 3:33 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Fraser]]></name></author>
<updated>2011-01-21T12:14:42+01:00</updated>
<published>2011-01-21T12:14:42+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29881#p29881</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29881#p29881"/>
<title type="html"><![CDATA[AXONS - Homebrew firmware for AX12+ and CM510]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29881#p29881"><![CDATA[
Hi Fritzoid, Thanks for that, I must break the habit of not reading every word, I usually do it more very late at night.<br /><br />All that software work so robotis can save a few cents on the sensor. That would be a big work detour for me and I don't have a suitable thermometer to straighten it all up with.<br /><br />I supppose adjustable temp threshold is more a luxury than a necessity, I could start out with a more crude: That's too hot... H-bridge disabled until cool down. Just comparing the non linear reading against a preset threshold.<br /><br />Now the question is how hot does a servo case feel just before robotis firmware disables H-bridge? I will have to try a gentle stall with robotis firmware and use the back of my finger waiting for cut out.<br /><br />edit:<br />I can't think of any reason to have adjustable safety limit for temperature, but there must be one.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2470">Fraser</a> — Fri Jan 21, 2011 12:14 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Fritzoid]]></name></author>
<updated>2011-01-20T20:26:57+01:00</updated>
<published>2011-01-20T20:26:57+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29875#p29875</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29875#p29875"/>
<title type="html"><![CDATA[AXONS - Homebrew firmware for AX12+ and CM510]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29875#p29875"><![CDATA[
Hi Fraser,<br /><br />As mentioned above, the temperature reading is converted into an 8-bit value using an internal table.  The conversion is done by table look-up because the temperature sensor (thermistor) does not respond linearly.  <br /><br />Now obviously it's a lot more work to do it  by table look-up, so I think Robotis must have had a good reason for doing it that way!<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=438">Fritzoid</a> — Thu Jan 20, 2011 8:26 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Fraser]]></name></author>
<updated>2011-01-20T19:17:55+01:00</updated>
<published>2011-01-20T19:17:55+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29873#p29873</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29873#p29873"/>
<title type="html"><![CDATA[AXONS - Homebrew firmware for AX12+ and CM510]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29873#p29873"><![CDATA[
Thanks Fritzoid,<br /><br />I should have looked at the AX12 robotis PDF a little more <img src="http://forum.robosavvy.com/images/smilies/icon_redface.gif" alt=":oops:" title="Embarassed" /> doh!<br /><br />So I'm guessing if I shift the ADC values down to 8 bits then I can simply use the initial thresholds as specifed by robotis:<br /><br />the Highest Limit Temperature = 85(0x55)<br />the Lowest Limit Voltage = 60(0X3C)<br />the Highest Limit Voltage = 190(0xBE)<br /><br />edit:<br />I'll check the 10 bit values first, for all I know the sensors might not use the full 10 bit range and so may only need 1 shift or maybe no shift.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2470">Fraser</a> — Thu Jan 20, 2011 7:17 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Fritzoid]]></name></author>
<updated>2011-01-20T14:14:56+01:00</updated>
<published>2011-01-20T14:14:56+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29869#p29869</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29869#p29869"/>
<title type="html"><![CDATA[AXONS - Homebrew firmware for AX12+ and CM510]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29869#p29869"><![CDATA[
Fraser,<br /><br />As far as I can tell...<br /><br />The control table entries for Current Voltage and Current Temperature along with their Limit values are all 8-bits.  <br /><br />You can set the temperature limit within the range 0-150 (0x00-0x96).<br />The voltage limits can be set between 50 and 250 (0x32-0xFA) each.<br /><br />The 10-bit temperature reading from the AD port is converted to an 8-bit temperature value using an internal table.<br /><br />The AD voltage reading is scaled before being compared to the high and low voltage limits.  The scaling factor (13/64) assures that the result will be limited to 8 bits.  <br /><br />I don't think that there's much more to it.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=438">Fritzoid</a> — Thu Jan 20, 2011 2:14 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Fraser]]></name></author>
<updated>2011-01-19T22:16:35+01:00</updated>
<published>2011-01-19T22:16:35+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29848#p29848</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29848#p29848"/>
<title type="html"><![CDATA[AXONS - Homebrew firmware for AX12+ and CM510]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29848#p29848"><![CDATA[
<span style="font-weight: bold">INFO REQUEST:</span><br /><br />Does anyone know the decimal ranges for VOLTAGE and TEMPERATURE in standard AX12 firmware, are they 10bit (0...1023)?<br /><br />What are the thresholds for underVOLT, overVOLT and overTEMP?<br /><br /><span style="font-weight: bold">STATUS REPORT:</span><br /><br />ATmega8: progmem 25% used, RAM 8% used.<br /><br />Comms parser and data structures are in place for all the new commands. Now just working out an accurate and fast way to determine present speed in order to implement constant velocity move.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2470">Fraser</a> — Wed Jan 19, 2011 10:16 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Fraser]]></name></author>
<updated>2011-01-14T21:30:40+01:00</updated>
<published>2011-01-14T21:30:40+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29788#p29788</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29788#p29788"/>
<title type="html"><![CDATA[AXONS - Homebrew firmware for AX12+ and CM510]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29788#p29788"><![CDATA[
After playing with stabilisition of a standing humanoid I have decided to write new commands into axons.<br /><br />I managed to mix quit a bit of gyro pitch and roll data into humanoid joints (all joints). I would like to mix more into certain joints but as I increase gyro mix gain I start to get oscillations, a lot f this is caused by my rather soft control scheme over the serial link, which has to be soft to stop oscillations about position hold.<br /><br />Despite these oscillations at higher gains, the humanoid can take quite a clip to the back of the head and remain standing.<br /><br />I believe I will get MUCH better results if I implement what Limor suggested near the beginning of this thread  (I always have to find out the hard way <img src="http://forum.robosavvy.com/images/smilies/icon_rolleyes.gif" alt=":roll:" title="Rolling Eyes" />)<br /><br />The new commands will be able to achieve the same throughput, 100Hz over 250kbaud on Win7:<br /><br /><span style="font-weight: bold">Velocity command:</span><br />All servos can have angular velocity set. Servo will rotate at this velocity until limit angle is reached (see below)<br /><br /><span style="font-weight: bold">Position command:</span><br />Servos will hold the passed positions. The maximum velocity used to achieve this will be the last velocity command received (if none received will use default 0.5 max velocity)<br /><br /><span style="font-weight: bold">Max limit angle command</span><br />Passed value will be stored in EEPROM. Servo will not pass this angle position, even when using existing PWM commands.<br /><br /><span style="font-weight: bold">Min limit angle command</span><br />As above.<br /><br />Note: Default min/max posn EEPROM values will be written on first time boot. These will be some conservative value within potentiometer endpoints.<br /><br /><span style="font-weight: bold">Set servos punch</span><br />The zero point of the PWM will be adjusted for each servo.<br /><br /><span style="font-weight: bold">Set servos control gain</span><br />This will adjust the linear ramp for position hold control (large values will be possible for spring effect)<br /><br /><span style="font-weight: bold">Set position compliance</span><br />Sets the deadzone about the required position in position hoild<br /><br />Should be finished in a few weeks.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2470">Fraser</a> — Fri Jan 14, 2011 9:30 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Fraser]]></name></author>
<updated>2011-01-13T03:33:05+01:00</updated>
<published>2011-01-13T03:33:05+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29763#p29763</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29763#p29763"/>
<title type="html"><![CDATA[AXONS - Homebrew firmware for AX12+ and CM510]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29763#p29763"><![CDATA[
This evening I played with the bioloid premium zig module pair (Zig100 and Zig110).<br /><br />Some notes that others might find interesting:<br /><br />As per robotis instructions you can enter the config mode on the Zig100 by plugging it into a zig2serial adapter and sending <span style="font-weight: bold">!</span> characters as you press the reset button on the zig2serial.<br /><br />With the Zig110 you can do the same (robotis doesn't document this):<br /><br />I rigged up jumper cables (zig110 to zig2serial) for RXD,TXD,VCC,GND and sent ! characters.<br /><br />I pressed reset and nothing happened (because 110 has no pinout for reset)<br /><br />You have to send the ! characters and then break/make the VCC line.<br /><br />After entering config I changed the baud dividers to 3, this gives a baud rate of 230400.<br /><br />I tried to set the CM510 to as close a baud as possible, I got damned close, lower 7 bits (ascii) seemed to flow nicely, but 8th bit gets occasionaly corrupted.<br /><br />I have just ordered some SMD 8Mhz crystals and will swap them for the 7.3728MHz crystals currently on my zigs.<br /><br />If all goes well then 100Hz loop freq. (with IMU data) over wireless on Win7 should be possible, faster (probably up to 200Hz) on a linux box.<br /><br />Note:<br />to make it easier to plug jumpers in I soldered SIL sockets (actually DIL socket sawn in half) onto my zig2serial. This also gives a much more solid seating for the zig100.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2470">Fraser</a> — Thu Jan 13, 2011 3:33 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Fraser]]></name></author>
<updated>2011-01-12T21:58:21+01:00</updated>
<published>2011-01-12T21:58:21+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29759#p29759</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29759#p29759"/>
<title type="html"><![CDATA[AXONS - Homebrew firmware for AX12+ and CM510]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=6832&amp;p=29759#p29759"><![CDATA[
Here are three classes:<br /><br /><a href="http://www.ledset.com/bioloid/axons/axons_interface_code.zip" class="postlink">http://www.ledset.com/bioloid/axons/axons_interface_code.zip</a><br /><br />Sorry for the windoze bits and pieces,t it should be a fairly easy port. Not many dependencies.<br /><br /><span style="font-weight: bold">OBJ_AxonsInterface.cpp</span><br />This class gives the low level access to axons. It includes a parser, it is set up to receive gyro data on the end of the packet but it will also accept a raw position packet just fine.<br /><br /><span style="font-weight: bold">OBJ_AxonsControl.cpp</span><br />The beginnings of a control class, at the moment position control is implemented, a work in progress but what is there works. For porting you will need to change out the windows PerformanceTimer for some other high priority 100Hz interrupt tick.<br /><br /><span style="font-weight: bold">OBJ_RobotisMotion.cpp</span><br />Parses standard robotis motion .mtn files and plays them into Axons, it works well but tweaks to OBJ_AxonsControl will be needed to duplicate robotis motions exactly.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2470">Fraser</a> — Wed Jan 12, 2011 9:58 pm</p><hr />
]]></content>
</entry>
</feed>