<?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 for imsolidstate</title>
	<atom:link href="http://www.imsolidstate.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.imsolidstate.com</link>
	<description>Always improving things...</description>
	<lastBuildDate>Tue, 20 Jul 2010 15:05:09 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on SMS remote control by imsolidstate</title>
		<link>http://www.imsolidstate.com/archives/708/comment-page-1#comment-2518</link>
		<dc:creator>imsolidstate</dc:creator>
		<pubDate>Tue, 20 Jul 2010 15:05:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.imsolidstate.com/?p=708#comment-2518</guid>
		<description>I looked into GSM modules, but I couldn&#039;t find any for cheap. The best deals are over at &lt;a href=&quot;http://www.sparkfun.com/commerce/categories.php?c=66&quot; rel=&quot;nofollow&quot;&gt;Sparkfun&lt;/a&gt;, but you&#039;re spending roughly $90 to get a module. The link you sent from mikroElektronika is just the breakout board for a module, you still have to buy the module. That&#039;s why I went with the cell phone, it&#039;s about twenty bucks.
The PDU thing is a pain, so spending the money is probably worth it.</description>
		<content:encoded><![CDATA[<p>I looked into GSM modules, but I couldn&#8217;t find any for cheap. The best deals are over at <a href="http://www.sparkfun.com/commerce/categories.php?c=66" rel="nofollow">Sparkfun</a>, but you&#8217;re spending roughly $90 to get a module. The link you sent from mikroElektronika is just the breakout board for a module, you still have to buy the module. That&#8217;s why I went with the cell phone, it&#8217;s about twenty bucks.<br />
The PDU thing is a pain, so spending the money is probably worth it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SMS remote control by imsolidstate</title>
		<link>http://www.imsolidstate.com/archives/708/comment-page-1#comment-2517</link>
		<dc:creator>imsolidstate</dc:creator>
		<pubDate>Tue, 20 Jul 2010 14:56:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.imsolidstate.com/?p=708#comment-2517</guid>
		<description>Thanks, I&#039;ll fix that. The program never returns from the decode_sms() routine. Unfortunately, there&#039;s a lot that could go wrong there. I suspect one of my offsets to break up the PDU string is incorrect. I need to debug the code (I added a bunch of diagnostic LEDs for that purpose) but haven&#039;t had time due to other projects. Thanks for your help!</description>
		<content:encoded><![CDATA[<p>Thanks, I&#8217;ll fix that. The program never returns from the decode_sms() routine. Unfortunately, there&#8217;s a lot that could go wrong there. I suspect one of my offsets to break up the PDU string is incorrect. I need to debug the code (I added a bunch of diagnostic LEDs for that purpose) but haven&#8217;t had time due to other projects. Thanks for your help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SMS remote control by Jon S</title>
		<link>http://www.imsolidstate.com/archives/708/comment-page-1#comment-2511</link>
		<dc:creator>Jon S</dc:creator>
		<pubDate>Tue, 20 Jul 2010 04:47:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.imsolidstate.com/?p=708#comment-2511</guid>
		<description>I would look into one of the GSM modules from Mikroelektronika. They connect thru serial link to your uC. http://www.mikroe.com/eng/categories/view/19/gsm-gprs-tools/

I&#039;ve been eyeing some of their boards for GSM SMS capabilities. You just need to make sure that the specific module supports the SMS without being in PDU mode. The Telit GM862 supports SMS in Text mode. Although a downside is that it will probably cost more than the cellphone you bought.</description>
		<content:encoded><![CDATA[<p>I would look into one of the GSM modules from Mikroelektronika. They connect thru serial link to your uC. <a href="http://www.mikroe.com/eng/categories/view/19/gsm-gprs-tools/" rel="nofollow">http://www.mikroe.com/eng/categories/view/19/gsm-gprs-tools/</a></p>
<p>I&#8217;ve been eyeing some of their boards for GSM SMS capabilities. You just need to make sure that the specific module supports the SMS without being in PDU mode. The Telit GM862 supports SMS in Text mode. Although a downside is that it will probably cost more than the cellphone you bought.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SMS remote control by Antoine</title>
		<link>http://www.imsolidstate.com/archives/708/comment-page-1#comment-2507</link>
		<dc:creator>Antoine</dc:creator>
		<pubDate>Tue, 20 Jul 2010 03:15:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.imsolidstate.com/?p=708#comment-2507</guid>
		<description>Hey,

I quickly surveyed your program and found that when you are comparing strings such as in :
  message[0x01]==&#039;e&#039; &amp;
  message[0x02]==&#039;l&#039; &amp;
  message[0x03]==&#039;a&#039; &amp;

you are using a single ampersand which is the bitwise AND operator. You want the AND logical operator which is &amp;&amp;. I think your comparisons will still work, but they are dependent on a true being represented by the same value while the C standard defines true as not 0. Doing it this way probably leads to a faster comparison, but its risky.

Otherwise, I cannot see what is wrong with it. It would help a lot if it was commented.

You probably tried sending commands to the AVR using a computer&#039;s serial port or sniffing the contents or command from the cell-phone. Where does it stops working exactly?</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>I quickly surveyed your program and found that when you are comparing strings such as in :<br />
  message[0x01]==&#8217;e&#8217; &amp;<br />
  message[0x02]==&#8217;l&#8217; &amp;<br />
  message[0x03]==&#8217;a&#8217; &amp;</p>
<p>you are using a single ampersand which is the bitwise AND operator. You want the AND logical operator which is &amp;&amp;. I think your comparisons will still work, but they are dependent on a true being represented by the same value while the C standard defines true as not 0. Doing it this way probably leads to a faster comparison, but its risky.</p>
<p>Otherwise, I cannot see what is wrong with it. It would help a lot if it was commented.</p>
<p>You probably tried sending commands to the AVR using a computer&#8217;s serial port or sniffing the contents or command from the cell-phone. Where does it stops working exactly?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My Photography by Flatbed scanner panoramic camera &#187; imsolidstate</title>
		<link>http://www.imsolidstate.com/about/my-photography/comment-page-1#comment-2412</link>
		<dc:creator>Flatbed scanner panoramic camera &#187; imsolidstate</dc:creator>
		<pubDate>Sat, 17 Jul 2010 02:25:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.imsolidstate.com/about/my-photography#comment-2412</guid>
		<description>[...] when they&#8217;re printed up big. I&#8217;m not new to panoramics, as I&#8217;ve done quite a few stitched sequences, as well as true panoramic film photography. A while back I was wondering if I could repurpose the [...]</description>
		<content:encoded><![CDATA[<p>[...] when they&#8217;re printed up big. I&#8217;m not new to panoramics, as I&#8217;ve done quite a few stitched sequences, as well as true panoramic film photography. A while back I was wondering if I could repurpose the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 0.008&#8243; PCB trace isolation on my CNC by imsolidstate</title>
		<link>http://www.imsolidstate.com/archives/476/comment-page-1#comment-1981</link>
		<dc:creator>imsolidstate</dc:creator>
		<pubDate>Wed, 23 Jun 2010 13:20:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.imsolidstate.com/?p=476#comment-1981</guid>
		<description>I&#039;m not really sure, I&#039;ve easily made upwards of a dozen boards and I&#039;m still using the same cutter and set of drill bits. As for the drill bits I&#039;m trying to use as much surface mount components as possible, so these days I&#039;m mostly drilling vias. Resharpened carbide bits aren&#039;t too expensive anyway, you can get sets at drillbitcity.com or ebay.</description>
		<content:encoded><![CDATA[<p>I&#8217;m not really sure, I&#8217;ve easily made upwards of a dozen boards and I&#8217;m still using the same cutter and set of drill bits. As for the drill bits I&#8217;m trying to use as much surface mount components as possible, so these days I&#8217;m mostly drilling vias. Resharpened carbide bits aren&#8217;t too expensive anyway, you can get sets at drillbitcity.com or ebay.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 0.008&#8243; PCB trace isolation on my CNC by Austin</title>
		<link>http://www.imsolidstate.com/archives/476/comment-page-1#comment-1979</link>
		<dc:creator>Austin</dc:creator>
		<pubDate>Wed, 23 Jun 2010 06:52:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.imsolidstate.com/?p=476#comment-1979</guid>
		<description>Hi. What is the lifetime (# of boards) of the drill bits? Also emailing this question.</description>
		<content:encoded><![CDATA[<p>Hi. What is the lifetime (# of boards) of the drill bits? Also emailing this question.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moisture Meter for Plants by imsolidstate</title>
		<link>http://www.imsolidstate.com/archives/506/comment-page-1#comment-1971</link>
		<dc:creator>imsolidstate</dc:creator>
		<pubDate>Tue, 22 Jun 2010 14:11:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.imsolidstate.com/?p=506#comment-1971</guid>
		<description>The step-up converter is TI&#039;s TPS61221. It&#039;s incredibly small at 2mm x 2mm, SC-70 6-pin package. I made the PCB on my CNC, but it was really at my machine&#039;s limits. 
It worked well, and seems pretty efficient at the load I was using (the AVR). You may want to select a different part depending on your load to get better efficiency. The curves for efficiency vs. current draw are given in the datasheet. They have a few different parts to match high efficiency with current draw.
I used the reference design from TI&#039;s datasheet to make the schematic. There&#039;s even a recommended layout. http://focus.ti.com/lit/ds/symlink/tps61221.pdf</description>
		<content:encoded><![CDATA[<p>The step-up converter is TI&#8217;s TPS61221. It&#8217;s incredibly small at 2mm x 2mm, SC-70 6-pin package. I made the PCB on my CNC, but it was really at my machine&#8217;s limits.<br />
It worked well, and seems pretty efficient at the load I was using (the AVR). You may want to select a different part depending on your load to get better efficiency. The curves for efficiency vs. current draw are given in the datasheet. They have a few different parts to match high efficiency with current draw.<br />
I used the reference design from TI&#8217;s datasheet to make the schematic. There&#8217;s even a recommended layout. <a href="http://focus.ti.com/lit/ds/symlink/tps61221.pdf" rel="nofollow">http://focus.ti.com/lit/ds/symlink/tps61221.pdf</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moisture Meter for Plants by Muris</title>
		<link>http://www.imsolidstate.com/archives/506/comment-page-1#comment-1963</link>
		<dc:creator>Muris</dc:creator>
		<pubDate>Tue, 22 Jun 2010 07:04:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.imsolidstate.com/?p=506#comment-1963</guid>
		<description>Hi,

I can&#039;t see what step-up regulator you are using in this project. Can you share the schematics with us? I am working on an &quot;automatic blinds&quot; and don&#039;t have much room for the batteries there, so this booster IC would be just perfect for me!

Regards!</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I can&#8217;t see what step-up regulator you are using in this project. Can you share the schematics with us? I am working on an &#8220;automatic blinds&#8221; and don&#8217;t have much room for the batteries there, so this booster IC would be just perfect for me!</p>
<p>Regards!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moisture Meter for Plants by Olliho</title>
		<link>http://www.imsolidstate.com/archives/506/comment-page-1#comment-1821</link>
		<dc:creator>Olliho</dc:creator>
		<pubDate>Mon, 14 Jun 2010 03:29:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.imsolidstate.com/?p=506#comment-1821</guid>
		<description>Hi there, can you, please, supply the schematic diagram for this very interesting project?
thanks</description>
		<content:encoded><![CDATA[<p>Hi there, can you, please, supply the schematic diagram for this very interesting project?<br />
thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
