<?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 Silicon Sparrow</title>
	<atom:link href="http://siliconsparrow.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://siliconsparrow.com</link>
	<description>Electronics and Software Design</description>
	<lastBuildDate>Wed, 23 Nov 2011 08:17:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Solved &#8211; CDHtmlDialog and bitmap resources by Abishek</title>
		<link>http://siliconsparrow.com/solved-cdhtmldialog-and-bitmap-resources/comment-page-1/#comment-16992</link>
		<dc:creator>Abishek</dc:creator>
		<pubDate>Wed, 23 Nov 2011 08:17:49 +0000</pubDate>
		<guid isPermaLink="false">http://siliconsparrow.com/?p=413#comment-16992</guid>
		<description>Hi,

Very Nice.

Thanks for posting this.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Very Nice.</p>
<p>Thanks for posting this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTC Desire HD Freeze Bug by BlueRiver</title>
		<link>http://siliconsparrow.com/htc-desire-hd-freeze-bug/comment-page-1/#comment-15468</link>
		<dc:creator>BlueRiver</dc:creator>
		<pubDate>Fri, 21 Oct 2011 19:10:48 +0000</pubDate>
		<guid isPermaLink="false">http://siliconsparrow.com/?p=267#comment-15468</guid>
		<description>I&#039;ve never had the bug ever since I bought the phone with 2.3.3 in April, but today i&#039;ve had three freezes and restarts in one day!

I&#039;m going to try this usb debugging thing and hope for the best :&lt;</description>
		<content:encoded><![CDATA[<p>I&#8217;ve never had the bug ever since I bought the phone with 2.3.3 in April, but today i&#8217;ve had three freezes and restarts in one day!</p>
<p>I&#8217;m going to try this usb debugging thing and hope for the best :&lt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to FFT with NXP&#8217;s DSP library by Adam</title>
		<link>http://siliconsparrow.com/how-to-fft-with-nxps-dsp-library/comment-page-1/#comment-15420</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Thu, 20 Oct 2011 20:34:09 +0000</pubDate>
		<guid isPermaLink="false">http://siliconsparrow.com/?p=380#comment-15420</guid>
		<description>Isn&#039;t this the same question you just asked?

I haven&#039;t pushed it to see how fast it will go but in my opinion 2MHz will be too much for this chip running this FFT library.</description>
		<content:encoded><![CDATA[<p>Isn&#8217;t this the same question you just asked?</p>
<p>I haven&#8217;t pushed it to see how fast it will go but in my opinion 2MHz will be too much for this chip running this FFT library.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to FFT with NXP&#8217;s DSP library by sam</title>
		<link>http://siliconsparrow.com/how-to-fft-with-nxps-dsp-library/comment-page-1/#comment-15412</link>
		<dc:creator>sam</dc:creator>
		<pubDate>Thu, 20 Oct 2011 17:05:35 +0000</pubDate>
		<guid isPermaLink="false">http://siliconsparrow.com/?p=380#comment-15412</guid>
		<description>thank&#039;s for your answer.
 i want to get fft from 2MHZ signal and it is not possible  with internal ADC  so i&#039;m going to use AD9225 . 
is cortex m3 suitable for this work? is the speed of cpu enough?
regards.</description>
		<content:encoded><![CDATA[<p>thank&#8217;s for your answer.<br />
 i want to get fft from 2MHZ signal and it is not possible  with internal ADC  so i&#8217;m going to use AD9225 .<br />
is cortex m3 suitable for this work? is the speed of cpu enough?<br />
regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to FFT with NXP&#8217;s DSP library by Adam</title>
		<link>http://siliconsparrow.com/how-to-fft-with-nxps-dsp-library/comment-page-1/#comment-15380</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Thu, 20 Oct 2011 01:05:58 +0000</pubDate>
		<guid isPermaLink="false">http://siliconsparrow.com/?p=380#comment-15380</guid>
		<description>Well I was using it on an LPC1768 with it&#039;s own internal ADC. My project only needed to analyze frequencies up to 2.5kHz and it did that easily with plenty of CPU cycles left over for the application software.

I don&#039;t think it would make much difference whether you use an external ADC or not because the data still has to be copied into RAM.

As for the maximum frequency, I haven&#039;t tried it but I think you could probably go up to 15kHz, maybe more if you optimized the code a bit such as removing the square-root function or using the on-chip DMA to do some of the memory transfers.

Let me know how you go with it.</description>
		<content:encoded><![CDATA[<p>Well I was using it on an LPC1768 with it&#8217;s own internal ADC. My project only needed to analyze frequencies up to 2.5kHz and it did that easily with plenty of CPU cycles left over for the application software.</p>
<p>I don&#8217;t think it would make much difference whether you use an external ADC or not because the data still has to be copied into RAM.</p>
<p>As for the maximum frequency, I haven&#8217;t tried it but I think you could probably go up to 15kHz, maybe more if you optimized the code a bit such as removing the square-root function or using the on-chip DMA to do some of the memory transfers.</p>
<p>Let me know how you go with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to FFT with NXP&#8217;s DSP library by sam</title>
		<link>http://siliconsparrow.com/how-to-fft-with-nxps-dsp-library/comment-page-1/#comment-15368</link>
		<dc:creator>sam</dc:creator>
		<pubDate>Wed, 19 Oct 2011 20:47:34 +0000</pubDate>
		<guid isPermaLink="false">http://siliconsparrow.com/?p=380#comment-15368</guid>
		<description>hi 
in your opinion if i use external ADC and lpc1768 what is the max frequency that i can use fft function?
regards.</description>
		<content:encoded><![CDATA[<p>hi<br />
in your opinion if i use external ADC and lpc1768 what is the max frequency that i can use fft function?<br />
regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to FFT with NXP&#8217;s DSP library by Adam</title>
		<link>http://siliconsparrow.com/how-to-fft-with-nxps-dsp-library/comment-page-1/#comment-14982</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Wed, 12 Oct 2011 12:31:04 +0000</pubDate>
		<guid isPermaLink="false">http://siliconsparrow.com/?p=380#comment-14982</guid>
		<description>That totally depends on what development tools you are using. I use GNU tools and so I just add &quot;-lNXP_M3_DSPLibFft&quot; to my linker options. If you use a graphical IDE such as Keil or Eclipse, there will be something under the project options menu to add additional libraries to the project.</description>
		<content:encoded><![CDATA[<p>That totally depends on what development tools you are using. I use GNU tools and so I just add &#8220;-lNXP_M3_DSPLibFft&#8221; to my linker options. If you use a graphical IDE such as Keil or Eclipse, there will be something under the project options menu to add additional libraries to the project.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to FFT with NXP&#8217;s DSP library by Ricardo</title>
		<link>http://siliconsparrow.com/how-to-fft-with-nxps-dsp-library/comment-page-1/#comment-14653</link>
		<dc:creator>Ricardo</dc:creator>
		<pubDate>Fri, 07 Oct 2011 14:09:47 +0000</pubDate>
		<guid isPermaLink="false">http://siliconsparrow.com/?p=380#comment-14653</guid>
		<description>how do I add NXP_M3_DSPLibFft.a to my project?</description>
		<content:encoded><![CDATA[<p>how do I add NXP_M3_DSPLibFft.a to my project?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Circuit Sketch Proof of Concept is Launched by Adam</title>
		<link>http://siliconsparrow.com/circuit-sketch-proof-of-concept-is-launched/comment-page-1/#comment-9114</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Wed, 08 Jun 2011 22:50:36 +0000</pubDate>
		<guid isPermaLink="false">http://siliconsparrow.com/?p=361#comment-9114</guid>
		<description>Thanks for the compliment. The site is still pretty wobbily and will improve. One of the features I would like to add is the ability for users to create their own symbols.

But for now, I have added a battery symbol for you.</description>
		<content:encoded><![CDATA[<p>Thanks for the compliment. The site is still pretty wobbily and will improve. One of the features I would like to add is the ability for users to create their own symbols.</p>
<p>But for now, I have added a battery symbol for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Circuit Sketch Proof of Concept is Launched by Micah S</title>
		<link>http://siliconsparrow.com/circuit-sketch-proof-of-concept-is-launched/comment-page-1/#comment-9063</link>
		<dc:creator>Micah S</dc:creator>
		<pubDate>Tue, 07 Jun 2011 08:27:51 +0000</pubDate>
		<guid isPermaLink="false">http://siliconsparrow.com/?p=361#comment-9063</guid>
		<description>Very nifty! Could you add the symbol for a cell/battery? This would make it very useful for my physics/physical science classes.</description>
		<content:encoded><![CDATA[<p>Very nifty! Could you add the symbol for a cell/battery? This would make it very useful for my physics/physical science classes.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

