<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="0.92">
<channel>
	<docs>http://backend.userland.com/rss092</docs>
	<title>AVR Freaks</title>
	<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;minimax=1</link>
	<description></description>
	<managingEditor>esivertsen@avrfreaks.net</managingEditor>
	<webMaster>esivertsen@avrfreaks.net</webMaster>
	<lastBuildDate>Tue, 16 Mar 2010 04:32:36 GMT</lastBuildDate>
	<item>
		<title>AVRfreaks.net :: RE: Cleaner - report dead/empty Projects for deletion here</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=680445#680445</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=110246&quot; target=&quot;_blank&quot;&gt;zbaird&lt;/a&gt;&lt;br /&gt;
	Subject: RE: Cleaner&lt;br /&gt;
	Posted: Mar 16, 2010 - 04:29 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 17&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;Well, this is great! It's nice to see it working.
&lt;br /&gt;

&lt;br /&gt;
It was my hope/intention that when the correction gets made (or rejected), the post here also gets deleted. Thus this is always just a current &amp;quot;to do&amp;quot; list, not a history of All Bad Things [tm].
	&lt;br /&gt;_________________&lt;br /&gt;Chuck Baird
&lt;br /&gt;
What would Scooby do?
&lt;br /&gt;
&lt;!-- m --&gt;&lt;a href=&quot;http://www.zbaird.com&quot; target=&quot;_blank&quot;&gt;http://www.zbaird.com&lt;/a&gt;&lt;!-- m --&gt;&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>General Electronics :: RE: Any less costly hot air station recommendations...</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=680444#680444</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=207254&quot; target=&quot;_blank&quot;&gt;bperrybap&lt;/a&gt;&lt;br /&gt;
	Subject: RE: Re: RE: Any less costly hot air station recommendations.&lt;br /&gt;
	Posted: Mar 16, 2010 - 04:12 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 9&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;Did you see the sparkfun writeup on using a hot skillet?
&lt;br /&gt;
&lt;a href=&quot;http://www.sparkfun.com/commerce/tutorial_info.php?tutorials_id=59&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;http://www.sparkfun.com/commerce/tutorial_info.php?tutorials_id=59&lt;/a&gt;
&lt;br /&gt;
Kind funny but it seems to work for some things.
&lt;br /&gt;

&lt;br /&gt;
--- bill
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR forum :: encapsulation and  memory size</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=680443#680443</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=209255&quot; target=&quot;_blank&quot;&gt;anniyan_x&lt;/a&gt;&lt;br /&gt;
	Subject: encapsulation and  memory size&lt;br /&gt;
	Posted: Mar 16, 2010 - 03:54 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 0&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;hi if write codes by encapsulating the registers definition of the registers mappings in by #define it as a macro, how does and how much does it effect the memory size example codes is as below:-
&lt;br /&gt;

&lt;br /&gt;
&lt;div class=&quot;codetitle&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;codecontent&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
*/
&lt;br /&gt;
#define SWITCH_TX_ON&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;#40;UCSR0B |=&amp;#40;1&amp;lt;&amp;lt;TXEN0&amp;#41;&amp;#41;
&lt;br /&gt;
#define SWITCH_RX_ON&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;#40;UCSR0B |=&amp;#40;1&amp;lt;&amp;lt;RXEN0&amp;#41;&amp;#41;
&lt;br /&gt;
#define SWITCH_TX_OFF&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;#40;UCSR0B &amp;amp;=~&amp;#40;1&amp;lt;&amp;lt;TXEN0&amp;#41;&amp;#41;
&lt;br /&gt;
#define SWITCH_RX_OFF&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;#40;UCSR0B &amp;amp;=~&amp;#40;1&amp;lt;&amp;lt;TXEN0&amp;#41;&amp;#41;
&lt;br /&gt;
#define UART_TRANSMIT_REGISTER&amp;#40;&amp;#41; &amp;#40;UDR0&amp;#41;
&lt;br /&gt;

&lt;br /&gt;
#define UART_RECEIVE_REGISTER&amp;#40;&amp;#41;&amp;nbsp; &amp;nbsp; &amp;#40;UDR0&amp;#41;&amp;nbsp; &amp;nbsp; 
&lt;br /&gt;

&lt;br /&gt;
#define UART_RX_isCompleted&amp;#40;&amp;#41;&amp;nbsp; &amp;nbsp;&amp;#40;UCSR0A &amp;amp;&amp;#40;1&amp;lt;&amp;lt;RXC0&amp;#41;&amp;#41; 
&lt;br /&gt;

&lt;br /&gt;
#define NEW_UNREAD_DATA_AVAILABLE&amp;#40;&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#40;UCSR0A &amp;amp;&amp;#40;1&amp;lt;&amp;lt;RXC0&amp;#41;&amp;#41; 
&lt;br /&gt;

&lt;br /&gt;
#define isUART_TX_DATAREG_Empty&amp;#40;&amp;#41; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#40;!&amp;#40;UCSR0A &amp;amp;&amp;#40;1&amp;lt;&amp;lt;UDRE0&amp;#41;&amp;#41;&amp;#41; 
&lt;br /&gt;

&lt;br /&gt;
#define isUART_RX_DATAREG_Empty&amp;#40;&amp;#41; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#40;!&amp;#40;UCSR0A &amp;amp;&amp;#40;1&amp;lt;&amp;lt;RXC0&amp;#41;&amp;#41;&amp;#41;
&lt;br /&gt;

&lt;br /&gt;
#define&amp;nbsp; &amp;nbsp;hasUART_TSR_shiftedout&amp;#40;&amp;#41;&amp;#40;UCSR0A &amp;amp;&amp;#40;1&amp;lt;&amp;lt;TXC0&amp;#41;&amp;#41; 
&lt;br /&gt;
&lt;/div&gt;
&lt;br /&gt;

&lt;br /&gt;
if i define as above and write API for using eg, A UART module, does this type of implementions eats up memeory?? as from my understading the compiler would replace into the place which i used the macro, the contents of the encapsulations for eg:-
&lt;br /&gt;

&lt;br /&gt;
&lt;div class=&quot;codetitle&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;codecontent&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
if &amp;#40;UART_RX_isCompleted&amp;#40;&amp;#41;&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;#123;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; // do something
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;#125;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp;//will be replaced to
&lt;br /&gt;

&lt;br /&gt;
if &amp;#40;&amp;#40;UCSR0A &amp;amp;&amp;#40;1&amp;lt;&amp;lt;RXC0&amp;#41;&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;#123;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; // do something
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;#125;
&lt;br /&gt;

&lt;br /&gt;
&lt;/div&gt;
&lt;br /&gt;
so it is same right to directly write or write through an encapsulation, anyway the purpose of the encapsulations is to later change the register mappings to register mapping another microcontroller if i wanted use the same API for another processor.
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR studio 4 forum :: RE: AVR Dragon ISP Programing Error</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=680442#680442</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=234816&quot; target=&quot;_blank&quot;&gt;VTron21&lt;/a&gt;&lt;br /&gt;
	Subject: RE: AVR Dragon ISP Programing Error&lt;br /&gt;
	Posted: Mar 16, 2010 - 03:51 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 2&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;That I am aware, however if the debug wire is enable at the moment I cannot disable it because I cannot enter debug mode at all.  AVR studio errors telling me the Debug wire is not enabled, and when I try to enable it it fails
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR32 Software Tools :: RE: AVR32Studio 2.5.0 plugin problem</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=680441#680441</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=170232&quot; target=&quot;_blank&quot;&gt;hitchkas&lt;/a&gt;&lt;br /&gt;
	
	Posted: Mar 16, 2010 - 03:48 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 10&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;JRE is 'Java Runtime Environment&amp;quot; by Sun Microsystems, creators of the Java language.  AVR32Studio requires the Java runtime environment to run.  Go to this site and download and install the latest JRE
&lt;br /&gt;

&lt;br /&gt;
&lt;!-- m --&gt;&lt;a href=&quot;http://www.java.com/en/download/manual.jsp&quot; target=&quot;_blank&quot;&gt;http://www.java.com/en/download/manual.jsp&lt;/a&gt;&lt;!-- m --&gt;
&lt;br /&gt;

&lt;br /&gt;
I hope this helps
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>Off-topic forum :: RE: Assembly or C</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=680438#680438</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=1170&quot; target=&quot;_blank&quot;&gt;js&lt;/a&gt;&lt;br /&gt;
	Subject: RE: Re: RE: Assembly or C&lt;br /&gt;
	Posted: Mar 16, 2010 - 03:30 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 12&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;..and the main in BASIC.. &lt;img src=&quot;modules//http://&lt;!-- l --&gt;&lt;a href=&quot;modules/PNphpBB2/images/smiles/icon_confused.gif&quot; target=&quot;_blank&quot;&gt;modules/PNphpBB2/images/smiles/icon_confused.gif&lt;/a&gt;&lt;!-- l --&gt;&quot; alt=&quot;Confused&quot; border=&quot;0&quot; /&gt;
	&lt;br /&gt;_________________&lt;br /&gt;John Samperi
&lt;br /&gt;
Ampertronics Pty. Ltd.
&lt;br /&gt;
&lt;!-- w --&gt;&lt;a href=&quot;http://www.ampertronics.com.au&quot; target=&quot;_blank&quot;&gt;www.ampertronics.com.au&lt;/a&gt;&lt;!-- w --&gt;
&lt;br /&gt;
* Electronic Design   * Custom Products   * Contract Assembly&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR GCC forum :: RE: Keyoard</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=680436#680436</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=233469&quot; target=&quot;_blank&quot;&gt;Rodmcm&lt;/a&gt;&lt;br /&gt;
	Subject: RE: Keyoard&lt;br /&gt;
	Posted: Mar 16, 2010 - 03:10 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 4&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;Thanks for that, something else learnt.I'll rip out esc and [.
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR forum :: RE: How fast can I switch back to output from an AD session?</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=680435#680435</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=233991&quot; target=&quot;_blank&quot;&gt;Kontrabass&lt;/a&gt;&lt;br /&gt;
	
	Posted: Mar 16, 2010 - 02:53 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 5&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;I read that too, 
&lt;br /&gt;
&lt;span style=&quot;font-style: italic&quot;&gt;The first conversion after the ADC is switched
&lt;br /&gt;
on (ADEN in ADCSRA is set) takes 25 ADC clock cycles in order to initialize the analog circuitry.&lt;/span&gt;
&lt;br /&gt;
But was not sure if they meant after each power on, or after each switching on (like programming it to be AD).
&lt;br /&gt;
Because I wondered if the &lt;span style=&quot;font-style: italic&quot;&gt;...initialize the analog circuitry&lt;/span&gt; is needed each time.
&lt;br /&gt;
Ok, that's set then.
&lt;br /&gt;

&lt;br /&gt;
But regarding the 
&lt;br /&gt;
&lt;span style=&quot;font-style: italic&quot;&gt;the change will not go in effect until this conversion is complete&lt;/span&gt;
&lt;br /&gt;
in the manual it only states this for &amp;quot;Analog Channel Selection Bits, Reference Selection Bits&amp;quot;.
&lt;br /&gt;

&lt;br /&gt;
At least in the ADC section.
&lt;br /&gt;

&lt;br /&gt;
Have you tested this out yourself?
&lt;br /&gt;

&lt;br /&gt;
Thanks!
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>Off-topic forum :: RE: Adobe Acrobat - don't make the mistake I just did!</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=680434#680434</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=9427&quot; target=&quot;_blank&quot;&gt;stevech&lt;/a&gt;&lt;br /&gt;
	
	Posted: Mar 16, 2010 - 02:48 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 32&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;&lt;div class=&quot;quotetitle&quot;&gt;clawson wrote:&lt;/div&gt;&lt;div class=&quot;quotecontent&quot;&gt;Steve,
&lt;br /&gt;

&lt;br /&gt;
I've always used the free CutePDF for &amp;quot;print to PDF&amp;quot; and it's absolutely brilliant (IMHO):
&lt;br /&gt;

&lt;br /&gt;
&lt;!-- m --&gt;&lt;a href=&quot;http://www.cutepdf.com/products/cutepdf/Writer.asp&quot; target=&quot;_blank&quot;&gt;http://www.cutepdf.com/products/cutepdf/Writer.asp&lt;/a&gt;&lt;!-- m --&gt;
&lt;br /&gt;

&lt;br /&gt;
Cliff&lt;/div&gt;
&lt;br /&gt;
Do I want all this baggage that comes with it?
&lt;br /&gt;
&lt;div class=&quot;quotetitle&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quotecontent&quot;&gt;    * Requires PS2PDF converter such as Ghostscript (recommended).
&lt;br /&gt;
      You can get the free GPL Ghostscript 8.15  here.
&lt;br /&gt;
       
&lt;br /&gt;

&lt;br /&gt;
GNU Ghostscript is an open-source interpreter for the PostScript language and the PDF file format. It is distributed under the GNU General Public License. You may obtain the source code for GPL Ghostscript 8.15 here. &lt;/div&gt;
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR forum :: RE: ADC averaging question</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=680430#680430</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=198465&quot; target=&quot;_blank&quot;&gt;npat_avr&lt;/a&gt;&lt;br /&gt;
	
	Posted: Mar 16, 2010 - 02:42 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 23&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;@Cliff,
&lt;br /&gt;

&lt;br /&gt;
I will be looking at an external ADC. What are some good chips I could use for this? Will the ADC interface to the AVR (SPI,I2C,etc.) slow down my overall sample rate?
&lt;br /&gt;

&lt;br /&gt;
@Bob,
&lt;br /&gt;

&lt;br /&gt;
That is exactly what I am doing. I am using a sine wave through a signal generator. I could get a decent 10kHz sine wave. When I bumped the frequency up to 18 kHz, I start getting &amp;quot;random&amp;quot; sampling.
&lt;br /&gt;

&lt;br /&gt;
@JC,
&lt;br /&gt;
I understand. I will be using an LPF. I wanted to use the XMega but that has an entire new learning curve for me. 
&lt;br /&gt;

&lt;br /&gt;
My only doubt was if averaging could help with the random sampling and smooth out the captured sine wave.
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>General Electronics :: RE: Wiznet Wiz question</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=680429#680429</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=9427&quot; target=&quot;_blank&quot;&gt;stevech&lt;/a&gt;&lt;br /&gt;
	
	Posted: Mar 16, 2010 - 02:39 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 16&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;&lt;div class=&quot;quotetitle&quot;&gt;nwrightson wrote:&lt;/div&gt;&lt;div class=&quot;quotecontent&quot;&gt;Hi John,
&lt;br /&gt;
I've interfaced to the Wiznet WIZ812MJ (W5100) and it works quite well. My two issues with it are -
&lt;br /&gt;
1) Like many other pre made boards, it does not support POE interfacing. Part of the problem is that the RJ45 socket does not pass through the connectors.
&lt;br /&gt;
After that, whether you want proper POE or just a 12VDC signal pass through style of thing is up to the user.
&lt;br /&gt;

&lt;br /&gt;
2) Too many pins. On the W5100, I only use the SPI interface, yet the WIZ812MJ has forty (40) pins.
&lt;br /&gt;

&lt;br /&gt;
I'm toying with the idea of making my own W5100 board.
&lt;br /&gt;

&lt;br /&gt;
Neil.&lt;/div&gt;
&lt;br /&gt;
It does have too many pins. If you are using SPI and not parallel. I use SPI, and I think many/most do so with the '812MJ, as it's aimed at embedded systems with modest throughput needs. Even so, my SPI is at 8MHz.
&lt;br /&gt;

&lt;br /&gt;
I just bought another batch of '812MJs. Would have bought an SPI-oriented board if it were plug and play as is the '812MJ.
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR GCC forum :: RE: Help! Requesting value of PINx causes huge code bloat?</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=680426#680426</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=1170&quot; target=&quot;_blank&quot;&gt;js&lt;/a&gt;&lt;br /&gt;
	Subject: RE: Help! Requesting value of PINx causes huge code bloat?&lt;br /&gt;
	Posted: Mar 16, 2010 - 02:29 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 3&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;Things like that are usually the causes of &amp;quot;General_Exception&amp;quot;...
	&lt;br /&gt;_________________&lt;br /&gt;John Samperi
&lt;br /&gt;
Ampertronics Pty. Ltd.
&lt;br /&gt;
&lt;!-- w --&gt;&lt;a href=&quot;http://www.ampertronics.com.au&quot; target=&quot;_blank&quot;&gt;www.ampertronics.com.au&lt;/a&gt;&lt;!-- w --&gt;
&lt;br /&gt;
* Electronic Design   * Custom Products   * Contract Assembly&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR forum :: RE: Xmega DAC noisy on Xplain board</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=680424#680424</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=159529&quot; target=&quot;_blank&quot;&gt;DocJC&lt;/a&gt;&lt;br /&gt;
	
	Posted: Mar 16, 2010 - 02:18 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 7&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;&lt;div class=&quot;quotetitle&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quotecontent&quot;&gt;Is there a buffer on the DAC output?&lt;/div&gt;
&lt;br /&gt;

&lt;br /&gt;
Regardless of Ossi's Extrnal buffer, the Xmega's DAC module contains an Internal Buffer.
&lt;br /&gt;

&lt;br /&gt;
&lt;div class=&quot;quotetitle&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;quotecontent&quot;&gt;26.5 DAC Output model
&lt;br /&gt;
Each DAC output channel has a driver buffer with feedback ensures that the voltage on the DAC
&lt;br /&gt;
output pin is equal to the DACs internal voltage until the DAC output reaches its saturation voltage.
&lt;br /&gt;
Figure 26-2 on page 319 shows the DAC output model, for details on Rchannel, refer to the
&lt;br /&gt;
DAC characteristics in the device data sheet.&lt;/div&gt;
&lt;br /&gt;

&lt;br /&gt;
I don't see a minimal load spec at this time...
&lt;br /&gt;

&lt;br /&gt;
JC
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>Off-topic forum :: RE: Why it's good to be an engineer</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=680423#680423</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=113411&quot; target=&quot;_blank&quot;&gt;Geoff&lt;/a&gt;&lt;br /&gt;
	Subject: Re: RE: Re: RE: Re: RE: Re: Why it&lt;br /&gt;
	Posted: Mar 16, 2010 - 02:12 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 21&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;&lt;div class=&quot;quotetitle&quot;&gt;bobgardner wrote:&lt;/div&gt;&lt;div class=&quot;quotecontent&quot;&gt;You apply for a rebate from the county for your solar clothes dryer.&lt;/div&gt;
&lt;br /&gt;
&lt;img src=&quot;modules//http://&lt;!-- l --&gt;&lt;a href=&quot;modules/PNphpBB2/images/smiles/icon_lol.gif&quot; target=&quot;_blank&quot;&gt;modules/PNphpBB2/images/smiles/icon_lol.gif&lt;/a&gt;&lt;!-- l --&gt;&quot; alt=&quot;Laughing&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;

&lt;br /&gt;
as long as the company buys sufficient carbon credits to offset my emissions it's environmentally friendly, right?
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
right?
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
right?
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;img src=&quot;modules//http://&lt;!-- l --&gt;&lt;a href=&quot;modules/PNphpBB2/images/smiles/icon_razz.gif&quot; target=&quot;_blank&quot;&gt;modules/PNphpBB2/images/smiles/icon_razz.gif&lt;/a&gt;&lt;!-- l --&gt;&quot; alt=&quot;Razz&quot; border=&quot;0&quot; /&gt;
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>General Electronics :: RE: Optical pulse counting at high speed... recommend a device?</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=680421#680421</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=212804&quot; target=&quot;_blank&quot;&gt;General_Exception&lt;/a&gt;&lt;br /&gt;
	Subject: RE: Optical pulse counting at high speed... recommend a devi&lt;br /&gt;
	Posted: Mar 16, 2010 - 02:06 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 8&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;Thanks for the suggestion, but I have very limited space where this detector will go, and if I order stuff from that far away (greetings from Ireland, BTW!) I'd want to be pretty sure it'll fit (and work!)
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
</channel>
</rss>