<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: RF12 configuration in EEPROM</title>
	<atom:link href="http://news.jeelabs.org/2009/05/07/rf12-configuration-in-eeprom/feed/" rel="self" type="application/rss+xml" />
	<link>http://news.jeelabs.org/2009/05/07/rf12-configuration-in-eeprom/</link>
	<description>Computing stuff tied to the physical world</description>
	<lastBuildDate>Thu, 11 Mar 2010 01:22:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: José Xavier</title>
		<link>http://news.jeelabs.org/2009/05/07/rf12-configuration-in-eeprom/comment-page-2/#comment-94</link>
		<dc:creator>José Xavier</dc:creator>
		<pubDate>Thu, 28 May 2009 20:27:31 +0000</pubDate>
		<guid isPermaLink="false">http://jeelab.wordpress.com/?p=1650#comment-94</guid>
		<description>It&#039;s still not working but now the connections are ok</description>
		<content:encoded><![CDATA[<p>It&#8217;s still not working but now the connections are ok</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jcw</title>
		<link>http://news.jeelabs.org/2009/05/07/rf12-configuration-in-eeprom/comment-page-/#comment-93</link>
		<dc:creator>jcw</dc:creator>
		<pubDate>Thu, 28 May 2009 15:43:42 +0000</pubDate>
		<guid isPermaLink="false">http://jeelab.wordpress.com/?p=1650#comment-93</guid>
		<description>OOPS, your&#039;right. MOSI means &quot;Master Out Slave In&quot;, so MOSI on MPU goes to SDI on Radio, and so on.

Thank you - I&#039;ve edited the page to correct this mistake: http://jeelab.equi4.com/2008/12/11/good-rf-with-rfm12b/</description>
		<content:encoded><![CDATA[<p>OOPS, your&#8217;right. MOSI means &#8220;Master Out Slave In&#8221;, so MOSI on MPU goes to SDI on Radio, and so on.</p>
<p>Thank you &#8211; I&#8217;ve edited the page to correct this mistake: <a href="http://jeelab.equi4.com/2008/12/11/good-rf-with-rfm12b/" rel="nofollow">http://jeelab.equi4.com/2008/12/11/good-rf-with-rfm12b/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: José Xavier</title>
		<link>http://news.jeelabs.org/2009/05/07/rf12-configuration-in-eeprom/comment-page-1/#comment-92</link>
		<dc:creator>José Xavier</dc:creator>
		<pubDate>Sat, 23 May 2009 22:29:27 +0000</pubDate>
		<guid isPermaLink="false">http://jeelab.wordpress.com/?p=1650#comment-92</guid>
		<description>I&#039;m continue with the debuging process.

I think that information is wrong:

    * MOSI (MCU) –&gt; SDO (RFM)
    * MISO (MCU)  SCK (RFM)
    * SS (MCU) –&gt; nSEL (RFM)
    * PD2 (MCU)  SDI (RFM)
    * MISO (MCU) &lt;– SDO (RFM)
Can you confirm it?

I tried a very simple code, if you have a free time it&#039;s very important to me if you can give a look at my code: http://paginas.fe.up.pt/~ee06091/rfm12_test.zip</description>
		<content:encoded><![CDATA[<p>I&#8217;m continue with the debuging process.</p>
<p>I think that information is wrong:</p>
<p>    * MOSI (MCU) –&gt; SDO (RFM)<br />
    * MISO (MCU)  SCK (RFM)<br />
    * SS (MCU) –&gt; nSEL (RFM)<br />
    * PD2 (MCU)  SDI (RFM)<br />
    * MISO (MCU) &lt;– SDO (RFM)<br />
Can you confirm it?</p>
<p>I tried a very simple code, if you have a free time it&#039;s very important to me if you can give a look at my code: <a href="http://paginas.fe.up.pt/~ee06091/rfm12_test.zip" rel="nofollow">http://paginas.fe.up.pt/~ee06091/rfm12_test.zip</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: José Xavier</title>
		<link>http://news.jeelabs.org/2009/05/07/rf12-configuration-in-eeprom/comment-page-1/#comment-91</link>
		<dc:creator>José Xavier</dc:creator>
		<pubDate>Sat, 23 May 2009 12:30:57 +0000</pubDate>
		<guid isPermaLink="false">http://jeelab.wordpress.com/?p=1650#comment-91</guid>
		<description>I connected a led in the IRQ line of xmit and recv and the led never blinks, it&#039;s always off, so the IRQ line is always on and never go out from while (digitalRead(RFM_IRQ)) :S</description>
		<content:encoded><![CDATA[<p>I connected a led in the IRQ line of xmit and recv and the led never blinks, it&#8217;s always off, so the IRQ line is always on and never go out from while (digitalRead(RFM_IRQ)) :S</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jcw</title>
		<link>http://news.jeelabs.org/2009/05/07/rf12-configuration-in-eeprom/comment-page-/#comment-90</link>
		<dc:creator>jcw</dc:creator>
		<pubDate>Sat, 23 May 2009 08:01:33 +0000</pubDate>
		<guid isPermaLink="false">http://jeelab.wordpress.com/?p=1650#comment-90</guid>
		<description>That&#039;s correct behavior. You&#039;re waiting for something to happen, but   at this point the receiver is off until something is sent out.

If you don&#039;t have  scope or logic analyzer, try connecting a led with   a 4K7 resistor from +3.3V to the IRQ line. Then you should be able to   &quot;see&quot; the interrupts (I&#039;ve not tried this myself).</description>
		<content:encoded><![CDATA[<p>That&#8217;s correct behavior. You&#8217;re waiting for something to happen, but   at this point the receiver is off until something is sent out.</p>
<p>If you don&#8217;t have  scope or logic analyzer, try connecting a led with   a 4K7 resistor from +3.3V to the IRQ line. Then you should be able to   &#8220;see&#8221; the interrupts (I&#8217;ve not tried this myself).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: José Xavier</title>
		<link>http://news.jeelabs.org/2009/05/07/rf12-configuration-in-eeprom/comment-page-1/#comment-89</link>
		<dc:creator>José Xavier</dc:creator>
		<pubDate>Sat, 23 May 2009 00:23:49 +0000</pubDate>
		<guid isPermaLink="false">http://jeelab.wordpress.com/?p=1650#comment-89</guid>
		<description>I try this http://jeelab.equi4.com/2008/12/11/good-rf-with-rfm12b/ and i saw that the program never go out from [code]void rf12_send(uint8_t data) {
  Serial.println(&quot;ENTROU&quot;);
    while (digitalRead(RFM_IRQ))
    Serial.println(&quot;!&quot;);
           ;
    rf12_xfer(0xB800 + data);
    ChkSum += data;
}[/code] the while, i have in the shell always a !, any sugestion?

Thanks for all</description>
		<content:encoded><![CDATA[<p>I try this <a href="http://jeelab.equi4.com/2008/12/11/good-rf-with-rfm12b/" rel="nofollow">http://jeelab.equi4.com/2008/12/11/good-rf-with-rfm12b/</a> and i saw that the program never go out from [code]void rf12_send(uint8_t data) {<br />
  Serial.println("ENTROU");<br />
    while (digitalRead(RFM_IRQ))<br />
    Serial.println("!");<br />
           ;<br />
    rf12_xfer(0xB800 + data);<br />
    ChkSum += data;<br />
}[/code] the while, i have in the shell always a !, any sugestion?</p>
<p>Thanks for all</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jcw</title>
		<link>http://news.jeelabs.org/2009/05/07/rf12-configuration-in-eeprom/comment-page-1/#comment-88</link>
		<dc:creator>jcw</dc:creator>
		<pubDate>Tue, 19 May 2009 21:20:09 +0000</pubDate>
		<guid isPermaLink="false">http://jeelab.wordpress.com/?p=1650#comment-88</guid>
		<description>(&quot;only man&quot; ... well, even if that were true, that doesn&#039;t make me the HopeRF tech support guy)

But seriously, you&#039;re asking questions I wouldn&#039;t know how to answer. I use the settings as currently present in the RF12 driver code, I don&#039;t even know what some of these settings mean, sorry. Check, recheck, and simplify - that&#039;s all I can give you as advice. I hope you can figure it out that way.</description>
		<content:encoded><![CDATA[<p>(&#8220;only man&#8221; &#8230; well, even if that were true, that doesn&#8217;t make me the HopeRF tech support guy)</p>
<p>But seriously, you&#8217;re asking questions I wouldn&#8217;t know how to answer. I use the settings as currently present in the RF12 driver code, I don&#8217;t even know what some of these settings mean, sorry. Check, recheck, and simplify &#8211; that&#8217;s all I can give you as advice. I hope you can figure it out that way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: José Xavier</title>
		<link>http://news.jeelabs.org/2009/05/07/rf12-configuration-in-eeprom/comment-page-1/#comment-87</link>
		<dc:creator>José Xavier</dc:creator>
		<pubDate>Tue, 19 May 2009 21:08:51 +0000</pubDate>
		<guid isPermaLink="false">http://jeelab.wordpress.com/?p=1650#comment-87</guid>
		<description>Hi again, sorry for my questions but you are the only man that i know that is working on it. What are the value that i must define in configuration for the load capacitor? In the datasheet i have values from 8,5 to 16pf</description>
		<content:encoded><![CDATA[<p>Hi again, sorry for my questions but you are the only man that i know that is working on it. What are the value that i must define in configuration for the load capacitor? In the datasheet i have values from 8,5 to 16pf</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: José Xavier</title>
		<link>http://news.jeelabs.org/2009/05/07/rf12-configuration-in-eeprom/comment-page-1/#comment-86</link>
		<dc:creator>José Xavier</dc:creator>
		<pubDate>Mon, 18 May 2009 20:54:03 +0000</pubDate>
		<guid isPermaLink="false">http://jeelab.wordpress.com/?p=1650#comment-86</guid>
		<description>Hi, it&#039;s still not working. I already solder the antena but i have the same resulta, i can configure it but anything else :S
the PD2 in an arduino is the pin 2 digital, right?

Any ideia?! :(</description>
		<content:encoded><![CDATA[<p>Hi, it&#8217;s still not working. I already solder the antena but i have the same resulta, i can configure it but anything else :S<br />
the PD2 in an arduino is the pin 2 digital, right?</p>
<p>Any ideia?! :(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jcw</title>
		<link>http://news.jeelabs.org/2009/05/07/rf12-configuration-in-eeprom/comment-page-1/#comment-85</link>
		<dc:creator>jcw</dc:creator>
		<pubDate>Sat, 16 May 2009 01:15:03 +0000</pubDate>
		<guid isPermaLink="false">http://jeelab.wordpress.com/?p=1650#comment-85</guid>
		<description>I don&#039;t know. Look up the RFM12 specs. Look around on this blog. Here&#039;s an example: http://jeelab.equi4.com/2009/04/19/production/ - i.e. 1 wire connected to 1 pin.

Best of luck.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know. Look up the RFM12 specs. Look around on this blog. Here&#8217;s an example: <a href="http://jeelab.equi4.com/2009/04/19/production/" rel="nofollow">http://jeelab.equi4.com/2009/04/19/production/</a> &#8211; i.e. 1 wire connected to 1 pin.</p>
<p>Best of luck.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
