<?xml version="1.0"?><rss version="2.0">
<channel>
<title>Alan&#039;s Ramblings - Responses</title>
<link>http://bleaklow.com:80/</link>
<description>My opinions may be incorrect, but they are my own</description>
<language>en</language>
<managingEditor>Alan Burlison</managingEditor>
<lastBuildDate>Sun, 05 Feb 2012 20:20:41 GMT</lastBuildDate>
  <generator>Pebble (http://pebble.sourceforge.net)</generator>
  <docs>http://backend.userland.com/rss</docs>
  <image>
    <url>http://bleaklow.com/images/misc/logo.gif</url>
    <title>Alan&#039;s Ramblings</title>
    <link>http://bleaklow.com:80/</link>
  </image>
  <item>
    <title>Re:</title>
    <link>http://bleaklow.com:80/2010/09/23/switch_debouncing_the_hard_and_the_soft_way.html#comment1328473241648</link>
    <description>
      Following my monitoring, millions of people in the world get the &lt;a href=&#034;http://goodfinance-blog.com/topics/personal-loans&#034;&gt;personal loans&lt;/a&gt; at various creditors. Hence, there is good chances to get a secured loan in any country. </description>
    <author>MercedesDennis</author>
    <comments>http://bleaklow.com:80/2010/09/23/switch_debouncing_the_hard_and_the_soft_way.html#comments</comments>
    <guid isPermaLink="true">http://bleaklow.com:80/2010/09/23/switch_debouncing_the_hard_and_the_soft_way.html#comment1328473241648</guid>
    <pubDate>Sun, 05 Feb 2012 20:20:41 GMT</pubDate>
  </item>
  <item>
    <title>Re:</title>
    <link>http://bleaklow.com:80/2010/09/12/updated_makefile_master.html#comment1328472290152</link>
    <description>
      If you are willing to buy real estate, you will have to receive the &lt;a href=&#034;http://goodfinance-blog.com/topics/mortgage-loans&#034;&gt;mortgage loans&lt;/a&gt;. Moreover, my mother all the time takes a sba loan, which seems to be really reliable. </description>
    <author>Jillian34Townsend</author>
    <comments>http://bleaklow.com:80/2010/09/12/updated_makefile_master.html#comments</comments>
    <guid isPermaLink="true">http://bleaklow.com:80/2010/09/12/updated_makefile_master.html#comment1328472290152</guid>
    <pubDate>Sun, 05 Feb 2012 20:04:50 GMT</pubDate>
  </item>
  <item>
    <title>Re:</title>
    <link>http://bleaklow.com:80/2004/07/21/problems_building_and_installing_mysql_on_solaris_10.html#comment1328341032845</link>
    <description>
      Some time before, I really needed to buy a building for my organization but I didn&#039;t have enough cash and couldn&#039;t buy something. Thank God my mate proposed to try to get the &lt;a href=&#034;http://goodfinance-blog.com/topics/mortgage-loans&#034;&gt;mortgage loans&lt;/a&gt; from banks. Thus, I acted so and used to be satisfied with my credit loan. </description>
    <author>MullenJodi</author>
    <comments>http://bleaklow.com:80/2004/07/21/problems_building_and_installing_mysql_on_solaris_10.html#comments</comments>
    <guid isPermaLink="true">http://bleaklow.com:80/2004/07/21/problems_building_and_installing_mysql_on_solaris_10.html#comment1328341032845</guid>
    <pubDate>Sat, 04 Feb 2012 07:37:12 GMT</pubDate>
  </item>
  <item>
    <title>Re:</title>
    <link>http://bleaklow.com:80/2003/08/14/more_apache_stuff_limiting_the_bandwidth_your_website_uses.html#comment1328237208705</link>
    <description>
      Don&#039;t you acknowledge that it is the best time to receive the &lt;a href=&#034;http://goodfinance-blog.com&#034;&gt;loans&lt;/a&gt;, which will make your dreams come true. </description>
    <author>BeanKASEY</author>
    <comments>http://bleaklow.com:80/2003/08/14/more_apache_stuff_limiting_the_bandwidth_your_website_uses.html#comments</comments>
    <guid isPermaLink="true">http://bleaklow.com:80/2003/08/14/more_apache_stuff_limiting_the_bandwidth_your_website_uses.html#comment1328237208705</guid>
    <pubDate>Fri, 03 Feb 2012 02:46:48 GMT</pubDate>
  </item>
  <item>
    <title>Re: How the HL1606 REALLY works</title>
    <link>http://bleaklow.com:80/2010/05/27/how_the_hl1606_really_works.html#comment1328214486377</link>
    <description>
      &lt;p&gt;Since I really found this information useful I feel like I should make my contribute.&lt;/p&gt;
&lt;p&gt;If you only need two hardware SPIs then you can use the USART in SPI mode, at least on the atmega168. Asynchronous mode on other devices will probably work too, but I have not tested it. For the Atmega168 just init the USART something like this:&lt;/p&gt;
&lt;pre&gt;
  //  TXD and XCK are output pins (PD1 and PD4 on Atmega168)
  DDRD |= (1&amp;lt;&amp;lt;PD1) | (1&amp;lt;&amp;lt;PD4);

  // RXCIEn TXCIEn UDRIE RXENn TXENn - - -  =  UCSRnB
  UCSR0B = 0b00001000;
  
  // UMSELn1 UMSELn0 - - - UDORDn UCPHAn UCPOLn  = UCSRnC
  UCSR0C = 0b11000100;
  
  //  Baud rate is similar to SPI clock rate
  UBRR0L = 3; // 115200
&lt;/pre&gt;
&lt;p&gt;Then the USART can be used as hardware SPI:
&lt;pre&gt;
void sendByte (uint8_t   out)
{
  while ( !( UCSR0A &amp;amp; (1&amp;lt;&amp;lt;UDRE0)) );
  UDR0 = out;
}
&lt;/pre&gt;</description>
    <author>Anonymous</author>
    <comments>http://bleaklow.com:80/2010/05/27/how_the_hl1606_really_works.html#comments</comments>
    <guid isPermaLink="true">http://bleaklow.com:80/2010/05/27/how_the_hl1606_really_works.html#comment1328214486377</guid>
    <pubDate>Thu, 02 Feb 2012 20:28:06 GMT</pubDate>
  </item>
  </channel>
</rss>

