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

<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-04-03T02:19:39+01:00</updated>

<author><name><![CDATA[RoboSavvy Forum]]></name></author>
<id>http://forum.robosavvy.com/feed.php?f=4&amp;t=5883</id>
<entry>
<author><name><![CDATA[limor]]></name></author>
<updated>2010-04-03T02:19:39+01:00</updated>
<published>2010-04-03T02:19:39+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=5883&amp;p=26215#p26215</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=5883&amp;p=26215#p26215"/>
<title type="html"><![CDATA[HSR 8498HB in Serial Mode... help!]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=5883&amp;p=26215#p26215"><![CDATA[
Have you managed to talk to the servos using the serial interface ?<br />this has been previously discussed at length here on the forum.<br />search the forum and check out our <a href="http://robosavvy.com/site/index.php?option=com_openwiki&amp;id=wiki:robonova-i_faq" class="postlink">RN1 wiki</a>and on <a href="http://www.robonova.de/store/support/index.php?_m=knowledgebase&amp;_a=viewarticle&amp;kbarticleid=5" class="postlink">robonova.de</a><p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=2">limor</a> — Sat Apr 03, 2010 2:19 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[cezik]]></name></author>
<updated>2010-02-17T12:15:48+01:00</updated>
<published>2010-02-17T12:15:48+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=5883&amp;p=25523#p25523</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=5883&amp;p=25523#p25523"/>
<title type="html"><![CDATA[HSR 8498HB in Serial Mode... help!]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=5883&amp;p=25523#p25523"><![CDATA[
Hi!<br /><br />I try to get to the Serial Mode in HSR 8498HB. Unofortunately I can't... and I don't know why. I send the right package to the serwo, but the servo do not respond.<br /><br />GCC Code is pretty simple, made on delays:<br /><br /><dl class="codebox"><dt>Code: </dt><dd><code>// SET MOTOR SPEED AND READ POSITION// <br /><br />      // HEADER //0x80// 1 1111 1110 00 <br />      PORTC = 0xFF; <br />      _delay_us&#40;8*52&#41;; <br />      PORTC = 0x00; <br />      _delay_us&#40;3*52&#41;; <br />       <br />      // COMMAND // 0xE9 // 1 0110 1000 00 <br />      PORTC = 0xFF; <br />      _delay_us&#40;1*52&#41;; <br />      PORTC = 0x00; <br />      _delay_us&#40;1*52&#41;; <br />      PORTC = 0xFF; <br />      _delay_us&#40;2*52&#41;; <br />      PORTC = 0x00; <br />      _delay_us&#40;1*52&#41;; <br />      PORTC = 0xFF; <br />      _delay_us&#40;1*52&#41;; <br />      PORTC = 0x00; <br />      _delay_us&#40;5*52&#41;; <br /><br />      // DATA 1 = SERVO ID // 1 1111 1111 00 <br /><br />      PORTC = 0xFF; <br />      _delay_us&#40;9*52&#41;; <br />      PORTC = 0x00; <br />      _delay_us&#40;2*52&#41;; <br /><br />      // DATA 2 = SPEED // 1 1111 1111 00 <br /><br />      PORTC = 0xFF; <br />      _delay_us&#40;9*52&#41;; <br />      PORTC = 0x00; <br />      _delay_us&#40;2*52&#41;; <br /><br />      // CHECKSUM = 1 0110 1001 00 <br /><br />      PORTC = 0xFF; <br />      _delay_us&#40;1*52&#41;; <br />      PORTC = 0x00; <br />      _delay_us&#40;1*52&#41;; <br />      PORTC = 0xFF; <br />      _delay_us&#40;2*52&#41;; <br />      PORTC = 0x00; <br />      _delay_us&#40;1*52&#41;; <br />      PORTC = 0xFF; <br />      _delay_us&#40;1*52&#41;; <br />      PORTC = 0x00; <br />      _delay_us&#40;2*52&#41;; <br />      PORTC = 0xFF; <br />      _delay_us&#40;1*52&#41;; <br />      PORTC = 0x00; <br />      _delay_us&#40;2*52&#41;; <br /><br />      // 00 // 1 1111 1111 00 <br /><br />      PORTC = 0xFF; <br />      _delay_us&#40;9*52&#41;; <br />      PORTC = 0x00; <br />      DDRC = 0x00; <br />      _delay_us&#40;2*52&#41;; <br />      DDRC = 0xFF; <br /><br />      // 00 // 1 1111 1111 00 <br /><br />      PORTC = 0xFF; <br />      _delay_us&#40;9*52&#41;; <br />      PORTC = 0x00; <br />      DDRC = 0x00; <br />      _delay_us&#40;2*52&#41;; <br />      DDRC = 0xFF; <br /></code></dd></dl><br /><br />What is that I do wrong? Somebody?<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1355">cezik</a> — Wed Feb 17, 2010 12:15 pm</p><hr />
]]></content>
</entry>
</feed>