<?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>Sat, 11 Oct 2008 12:24:47 GMT</lastBuildDate>
	<item>
		<title>AVR forum :: RE: PWM Servo code for ATMega168</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=499102#499102</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=60091&quot; target=&quot;_blank&quot;&gt;Lajon&lt;/a&gt;&lt;br /&gt;
	Subject: RE: PWM Servo code for ATMega168&lt;br /&gt;
	Posted: Oct 11, 2008 - 11:24 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 12&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 it possible that setting those timers for settime() is conflicting with my servo code in init_pwm() ? they use the same timers...&lt;/div&gt;Possible? More like certain. You can use another timer for the delay or use the util/delay.h delay loops.
&lt;br /&gt;
/Lars
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>General Electronics :: RE: I2C problem: The ack from the slave is not low enough!!!</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=499101#499101</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=96421&quot; target=&quot;_blank&quot;&gt;xchip&lt;/a&gt;&lt;br /&gt;
	Subject: RE: I2C problem: The ack from the slave is not low enough!!!&lt;br /&gt;
	Posted: Oct 11, 2008 - 11:14 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 4&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;Hi!
&lt;br /&gt;

&lt;br /&gt;
I'am using bit banging, and for reading the Ack bit this is the code I'm using:
&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;
unsigned char I2C_ReadBit&amp;#40;&amp;#41;
&lt;br /&gt;
&amp;#123;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // I am using external pullups 10k, but
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // turning on the IC's pull ups should 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // not harm
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I2C_PORT |= &amp;#40; 1 &amp;lt;&amp;lt; I2C_SDA &amp;#41;;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I2C_PORT |= &amp;#40; 1 &amp;lt;&amp;lt; I2C_SCL &amp;#41; ;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; _delay_ms&amp;#40;1&amp;#41;;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // I2C_DDR &amp;amp;= ~&amp;#40; 1 &amp;lt;&amp;lt; I2C_SDA &amp;#41;;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; unsigned char data = I2C_PIN;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // I2C_DDR |= &amp;#40; 1 &amp;lt;&amp;lt; I2C_SDA &amp;#41;;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I2C_PORT &amp;amp;= ~&amp;#40; 1 &amp;lt;&amp;lt; I2C_SCL &amp;#41;;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; _delay_ms&amp;#40;1&amp;#41;;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // return SDA bit
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return &amp;#40; data &amp;gt;&amp;gt; I2C_SDA &amp;#41; &amp;amp; 1;
&lt;br /&gt;
&amp;#125;&lt;/div&gt;
&lt;br /&gt;

&lt;br /&gt;
I feel I'm very close to get it working!!! &lt;img src=&quot;modules//http://&lt;!-- l --&gt;&lt;a href=&quot;modules/PNphpBB2/images/smiles/icon_smile.gif&quot; target=&quot;_blank&quot;&gt;modules/PNphpBB2/images/smiles/icon_smile.gif&lt;/a&gt;&lt;!-- l --&gt;&quot; alt=&quot;Smile&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;

&lt;br /&gt;
P.D: in case it matters I'm usign an Atmega128
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR forum :: RE: My PonyProg doesnt work!</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=499100#499100</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=84575&quot; target=&quot;_blank&quot;&gt;david.prentice&lt;/a&gt;&lt;br /&gt;
	Subject: RE: My PonyProg doesnt work!&lt;br /&gt;
	Posted: Oct 11, 2008 - 11:11 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 1&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;The xtal will be no problem.   However the virgin Tiny will be running on its internal 1MHz clock.   See if reducing the programming speed helps.
&lt;br /&gt;

&lt;br /&gt;
Otherwise,  you have discovered the joys of cheapskate parallel port programming.   Read the tutorial from Plons.
&lt;br /&gt;

&lt;br /&gt;
You should be able to get your circuit to work.   It just may not always be that reliable.   On the other hand perhaps it will work very time.
&lt;br /&gt;

&lt;br /&gt;
Which PonyProg interface circuit have you made ?
&lt;br /&gt;

&lt;br /&gt;
David.
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR forum :: RE: A few questions regarding electronics and Atmel...</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=499098#499098</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=66340&quot; target=&quot;_blank&quot;&gt;microcarl&lt;/a&gt;&lt;br /&gt;
	Subject: Re: RE: A few questions regarding electronics and Atmel...&lt;br /&gt;
	Posted: Oct 11, 2008 - 11:05 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 8&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;&lt;div class=&quot;quotetitle&quot;&gt;leon_heller wrote:&lt;/div&gt;&lt;div class=&quot;quotecontent&quot;&gt;You don't need a 64 MHz crystal! Faster chips use a PLL to generate the clock, from a much lower frequency.
&lt;br /&gt;

&lt;br /&gt;
A PC supply can be awkward, as it might need quite a high load even to start - far more than a little AVR can provide. &lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-style: italic&quot;&gt;It's best to use batteries (NiMH) or get a proper bench supply.&lt;/span&gt;&lt;/span&gt; I like the little LASCAR one, it's quite cheap.
&lt;br /&gt;

&lt;br /&gt;
Leon&lt;/div&gt;
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
A conventional PC power supply is not recommended for the beginner, as it has complications that must be considered that will more then likely be beyond novice abilities.  Though, a PC notebook power supply may work well, if the external project voltage regulators are well heat-sink-ed well enough.
&lt;br /&gt;

&lt;br /&gt;
A small, say 9VDC or 12VDC &lt;span style=&quot;font-style: italic&quot;&gt;Wall-Wart&lt;/span&gt; capable of supplying about 100mA to a 5V0 and/or 3V0 voltage regulator(s) is more then enough to get you started.
	&lt;br /&gt;_________________&lt;br /&gt;Carl W. Livingston, KC5OTL
&lt;br /&gt;
&lt;!-- e --&gt;&lt;a href=&quot;mailto:microcarl@roadrunner.com&quot;&gt;microcarl@roadrunner.com&lt;/a&gt;&lt;!-- e --&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-style: italic&quot;&gt;It's a fundamental law of nature...  &lt;span style=&quot;font-weight: bold&quot;&gt;All things gravitate toward total chaos!!!&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-style: italic&quot;&gt;The original Dragon Slayer !&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-style: italic&quot;&gt;Long live the AVR!!!&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>Off-topic forum :: RE: Microchip and ON Bid for Atmel</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=499097#499097</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=61899&quot; target=&quot;_blank&quot;&gt;kmr&lt;/a&gt;&lt;br /&gt;
	
	Posted: Oct 11, 2008 - 10:58 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 132&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;&lt;div class=&quot;quotetitle&quot;&gt;metal wrote:&lt;/div&gt;&lt;div class=&quot;quotecontent&quot;&gt;then why microchip wants to buy ATMEL ?&lt;/div&gt;So they can learn  how the name &amp;quot;AVR&amp;quot; really originated.
	&lt;br /&gt;_________________&lt;br /&gt;Kevin Rosenberg
&lt;br /&gt;
&lt;!-- m --&gt;&lt;a href=&quot;http://b9.com&quot; target=&quot;_blank&quot;&gt;http://b9.com&lt;/a&gt;&lt;!-- m --&gt;
&lt;br /&gt;
&lt;!-- m --&gt;&lt;a href=&quot;http://kevin.hypershots.com&quot; target=&quot;_blank&quot;&gt;http://kevin.hypershots.com&lt;/a&gt;&lt;!-- m --&gt;&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR forum :: RE: Free beer and naked girls!</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=499096#499096</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=61899&quot; target=&quot;_blank&quot;&gt;kmr&lt;/a&gt;&lt;br /&gt;
	Subject: RE: Free beer and naked girls!&lt;br /&gt;
	Posted: Oct 11, 2008 - 10:56 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 5&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;From a recent thread comes the answer to all questions: &amp;quot;Use gcc!&amp;quot;
	&lt;br /&gt;_________________&lt;br /&gt;Kevin Rosenberg
&lt;br /&gt;
&lt;!-- m --&gt;&lt;a href=&quot;http://b9.com&quot; target=&quot;_blank&quot;&gt;http://b9.com&lt;/a&gt;&lt;!-- m --&gt;
&lt;br /&gt;
&lt;!-- m --&gt;&lt;a href=&quot;http://kevin.hypershots.com&quot; target=&quot;_blank&quot;&gt;http://kevin.hypershots.com&lt;/a&gt;&lt;!-- m --&gt;&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>General Electronics :: RE: battery Configuration</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=499093#499093</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=160839&quot; target=&quot;_blank&quot;&gt;djoshi&lt;/a&gt;&lt;br /&gt;
	
	Posted: Oct 11, 2008 - 10:46 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 6&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;They will be
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR Tutorials :: RE: [TUT][HARD][PCB] How to make your own board.</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=499092#499092</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=152762&quot; target=&quot;_blank&quot;&gt;condemned&lt;/a&gt;&lt;br /&gt;
	
	Posted: Oct 11, 2008 - 10:44 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 26&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;The black labeling in the picture is just toner, ironed directly on to the glass-fibre board. There is no copper underneath the labels in this example.
&lt;br /&gt;

&lt;br /&gt;
Once you find the right iron temperature and the correct pressure to iron with, they're pretty difficult to remove. If I ever iron on the wrong labels (don't ask!), it takes a lot of sanding with wet-and-dry paper to get them off.
&lt;br /&gt;

&lt;br /&gt;
I used to sand the board before applying the labels, believing that it helped to provide a key for the toner, but I've recently found that it's just as good without.
&lt;br /&gt;

&lt;br /&gt;
The toner labels &lt;span style=&quot;font-style: italic&quot;&gt;are&lt;/span&gt; easily marked by a soldering iron though, so I always tin my copper tracks before ironing on the labels.
&lt;br /&gt;

&lt;br /&gt;
On a technical note, I believe that there are different sorts of toner out there. I used to use an HP LaserJet for my transfers (courtesy of work), and that toner was much more dense (but easier to smudge whilst ironing) than my Samsung ML-2510's toner.
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR studio 4 forum :: 3 wire USI functional with JTAGICE MKII in TN24?</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=499090#499090</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=130817&quot; target=&quot;_blank&quot;&gt;marc_j&lt;/a&gt;&lt;br /&gt;
	Subject: 3 wire USI functional with JTAGICE MKII in TN24?&lt;br /&gt;
	Posted: Oct 11, 2008 - 10:37 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 0&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;I'm trying to get SPI mode 1 to function using the assembly code in the data sheet and JTAGICE MKII with Studio 4.14.
&lt;br /&gt;
The clock output works correctly (changes state in the PIN and PORT registers, and in the application) but MOSI (PA6) does not change state as the bits are shifted from USIDR. I have DDRA6 set as an output (as it should be) but the state on this bit remains whatever it was prior to the start of the USI TX.
&lt;br /&gt;

&lt;br /&gt;
I assume USI is fully functional since it isn't in the known issues for JTAGICE MKII. 
&lt;br /&gt;

&lt;br /&gt;
Can somebody tell me whether the USI 3 wire mode is functional with JTAGICE MKII?
&lt;br /&gt;

&lt;br /&gt;
Thanks
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR32 Hardware :: RE: EVK1100 PCB Gerber Files</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=499087#499087</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=147263&quot; target=&quot;_blank&quot;&gt;funnyLinux&lt;/a&gt;&lt;br /&gt;
	
	Posted: Oct 11, 2008 - 10:30 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 6&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;Altium cannot import .art file. It accepts .g?? format.But it's very easy to do mesurement job. I use it for a long time. I need some SW to convert .art to .g??.
&lt;br /&gt;

&lt;br /&gt;
I'll have a look at pulsonicx.
&lt;br /&gt;

&lt;br /&gt;
Thank you for your help!
&lt;br /&gt;

&lt;br /&gt;
funnyLinux
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR32 Linux Forum :: RE: New ways for GPIO</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=499086#499086</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=68664&quot; target=&quot;_blank&quot;&gt;ghayne&lt;/a&gt;&lt;br /&gt;
	
	Posted: Oct 11, 2008 - 10:28 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 1&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;Wonderful squidgit, is this your baby? I have been waiting for this.
&lt;br /&gt;

&lt;br /&gt;
When can we expect a Buildroot version &lt;img src=&quot;modules//http://&lt;!-- l --&gt;&lt;a href=&quot;modules/PNphpBB2/images/smiles/icon_wink.gif&quot; target=&quot;_blank&quot;&gt;modules/PNphpBB2/images/smiles/icon_wink.gif&lt;/a&gt;&lt;!-- l --&gt;&quot; alt=&quot;Wink&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;

&lt;br /&gt;
Garry
	&lt;br /&gt;_________________&lt;br /&gt;Regards, Garry Hayne&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR32 General (standalone) :: RE: SPI-Master PDCA-config for receive? (UC3B)</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=499085#499085</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=145294&quot; target=&quot;_blank&quot;&gt;Heihopp&lt;/a&gt;&lt;br /&gt;
	Subject: Re: RE: SPI-Master PDCA-config for receive? (UC3B)&lt;br /&gt;
	Posted: Oct 11, 2008 - 10:20 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 10&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;&lt;div class=&quot;quotetitle&quot;&gt;DerAlbi wrote:&lt;/div&gt;&lt;div class=&quot;quotecontent&quot;&gt;
&lt;br /&gt;
How does the Channel-priority affect the function of the channel?
&lt;br /&gt;

&lt;br /&gt;
Is it possible that a lower priority-channel can loose some received bytes? (e.g)
&lt;br /&gt;
That would be a great help..&lt;/div&gt;
&lt;br /&gt;

&lt;br /&gt;
I don't know what exactly happens. As i understand it, the SPI can work something like this when using PDCA:
&lt;br /&gt;

&lt;br /&gt;
1. Enable RX
&lt;br /&gt;
2. Enable TX (believe the opposite order is wrong)
&lt;br /&gt;
3. SPI_TXRDY flag is set (ready to transmit a char)
&lt;br /&gt;
4. PDCA TX grabs a char from TX memory table
&lt;br /&gt;
5. SPI TX gets the char, resets TXRDY flag and shifts out
&lt;br /&gt;
6. SPI RX gets a char and sets the SPI_RXRDY flag
&lt;br /&gt;
7. PDCA RX grabs the char from SPI and stores to ram
&lt;br /&gt;
8. goto 3
&lt;br /&gt;

&lt;br /&gt;
The time between RXRDY and TXRDY flag is essential. I am not sure if this time is positive or negative, and if the module hardware waits for RX process to finish before setting the TXRDY flag. Information about this probably can be found in the PDCA or SPI documentation in the datasheet.
&lt;br /&gt;

&lt;br /&gt;
Maybe one can program a delay so that TXRDY flag will be set after that delay, thus giving room for the RX process. See page 210 about TXEMPTY flag. Question is if PDCA uses this flag or TDRE as what i called TXRDY in this post.
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR32 General (standalone) :: USB gamepad. How to start ?</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=499083#499083</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=93008&quot; target=&quot;_blank&quot;&gt;bubugian&lt;/a&gt;&lt;br /&gt;
	Subject: USB gamepad. How to start ?&lt;br /&gt;
	Posted: Oct 11, 2008 - 10:15 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 0&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;Let's suppose you'd like to start a new project: PS3 USB GAMEPAD.
&lt;br /&gt;

&lt;br /&gt;
Suppose to use Atmel's USB framework.. wich usb class ?
&lt;br /&gt;
How I could tell to PS3 that (for example) square button is pressed or left analog is up ?
&lt;br /&gt;

&lt;br /&gt;
Please let me know how to start...
&lt;br /&gt;
Thanks very much!
&lt;br /&gt;

&lt;br /&gt;
Regards, bubugian.
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>AVR GCC forum :: RE: AVR, Netbeans, eclipse</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=499082#499082</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=93008&quot; target=&quot;_blank&quot;&gt;bubugian&lt;/a&gt;&lt;br /&gt;
	Subject: RE: AVR, Netbeans, eclipse&lt;br /&gt;
	Posted: Oct 11, 2008 - 10:07 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 1&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;SOLVED: very, very easy.
&lt;br /&gt;
Set compiler and debugger tool inside the netbeans option.
&lt;br /&gt;
All works very well. I suggest it.
&lt;br /&gt;

&lt;br /&gt;
Regards,
&lt;br /&gt;
bubugian.
	&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
	<item>
		<title>General Electronics :: RE: Eagle PCB to something else</title>
		<link>http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;file=viewtopic&amp;theme=print&amp;p=499081#499081</link>
		<description>Author: &lt;a href=&quot;http://www.avrfreaks.net/index.php?name=PNphpBB2&amp;amp;file=viewprofile&amp;amp;u=955&quot; target=&quot;_blank&quot;&gt;markus_b&lt;/a&gt;&lt;br /&gt;
	Subject: RE: Re: RE: Eagle PCB to something else&lt;br /&gt;
	Posted: Oct 11, 2008 - 10:07 AM (GMT 1)&lt;br /&gt;
	Topic Replies: 4&lt;br /&gt;&lt;br /&gt;
	&lt;span class="postbody"&gt;One other place which takes Eagle files is Olimex.
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-style: italic&quot;&gt;Markus&lt;/span&gt;
	&lt;br /&gt;_________________&lt;br /&gt;&lt;span style=&quot;font-style: italic&quot;&gt;Markus&lt;/span&gt; - Always listen to experts. They'll tell you what can't be done, and why. Then do it. - Lazarus Long&lt;/span&gt;&lt;br /&gt;
	</description>
	</item>
</channel>
</rss>