<?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 on: An Arduino Compatible Using CP2102</title>
	<atom:link href="http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/</link>
	<description></description>
	<lastBuildDate>Thu, 23 May 2013 21:08:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: kwong</title>
		<link>http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/comment-page-1/#comment-202734</link>
		<dc:creator>kwong</dc:creator>
		<pubDate>Wed, 24 Apr 2013 12:25:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.kerrywong.com/?p=2378#comment-202734</guid>
		<description><![CDATA[Hi Pieter,

C4 is the USB power bypassing cap, it needs to be placed as close to the USB connector as possible. C8 is the FT232RL 3V3 bypassing cap, and needs to be placed as close to pin 17 of the chip as possible. C10 and C13 are not as critical (C10 is to provide power reset timing delay and C13 is used to generate the reset signal required by the ATmega328P).]]></description>
		<content:encoded><![CDATA[<p>Hi Pieter,</p>
<p>C4 is the USB power bypassing cap, it needs to be placed as close to the USB connector as possible. C8 is the FT232RL 3V3 bypassing cap, and needs to be placed as close to pin 17 of the chip as possible. C10 and C13 are not as critical (C10 is to provide power reset timing delay and C13 is used to generate the reset signal required by the ATmega328P).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pieter</title>
		<link>http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/comment-page-1/#comment-202722</link>
		<dc:creator>Pieter</dc:creator>
		<pubDate>Wed, 24 Apr 2013 10:25:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.kerrywong.com/?p=2378#comment-202722</guid>
		<description><![CDATA[I&#039;m thinking of designing a minimum breakout board for the FT232RL that will plug into an ATMega328 Project Board like a small &quot;shield&quot; (stil have to design that part).

Looking at the Duemilanove Schematic (http://arduino.cc/en/uploads/Main/arduino-duemilanove-schematic.pdf), Which of the Capacitors on the USB side (C4, C8, C10) needs to be on the breakout board and close to their respective pins on the FT232RL chip? ...does Capacitor C13 need to be close to the FT232RL chip or the Microcontroller chip? (or neither?)]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m thinking of designing a minimum breakout board for the FT232RL that will plug into an ATMega328 Project Board like a small &#8220;shield&#8221; (stil have to design that part).</p>
<p>Looking at the Duemilanove Schematic (<a href="http://arduino.cc/en/uploads/Main/arduino-duemilanove-schematic.pdf" rel="nofollow">http://arduino.cc/en/uploads/Main/arduino-duemilanove-schematic.pdf</a>), Which of the Capacitors on the USB side (C4, C8, C10) needs to be on the breakout board and close to their respective pins on the FT232RL chip? &#8230;does Capacitor C13 need to be close to the FT232RL chip or the Microcontroller chip? (or neither?)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kwong</title>
		<link>http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/comment-page-1/#comment-199698</link>
		<dc:creator>kwong</dc:creator>
		<pubDate>Wed, 20 Feb 2013 00:35:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.kerrywong.com/?p=2378#comment-199698</guid>
		<description><![CDATA[Hi Daniel,

I have been using the CP2102 board for a while now (both with Linux and Windows) and it has been working really well. Since it is just a USB to UART converter, no special software is needed Linux. For Windows, you will need the driver from silab (http://www.silabs.com/products/mcu/Pages/USBtoUARTBridgeVCPDrivers.aspx).

If you built the circuit according to what I have, then it should work (The 100nf cap to the RESET pin on the ATmega328 is essential as ATmega328 needs to be reset right before the upload begins, according to the Arduino bootloader design). The Arduino bootloader I used is the standard Duemilanove bootloader if this helps.]]></description>
		<content:encoded><![CDATA[<p>Hi Daniel,</p>
<p>I have been using the CP2102 board for a while now (both with Linux and Windows) and it has been working really well. Since it is just a USB to UART converter, no special software is needed Linux. For Windows, you will need the driver from silab (<a href="http://www.silabs.com/products/mcu/Pages/USBtoUARTBridgeVCPDrivers.aspx" rel="nofollow">http://www.silabs.com/products/mcu/Pages/USBtoUARTBridgeVCPDrivers.aspx</a>).</p>
<p>If you built the circuit according to what I have, then it should work (The 100nf cap to the RESET pin on the ATmega328 is essential as ATmega328 needs to be reset right before the upload begins, according to the Arduino bootloader design). The Arduino bootloader I used is the standard Duemilanove bootloader if this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/comment-page-1/#comment-199692</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Tue, 19 Feb 2013 21:52:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.kerrywong.com/?p=2378#comment-199692</guid>
		<description><![CDATA[Your page is the best source I can find regarding a CP2102. 

When I built my diy 328p board it seems  it came with the blink sketch already. Tried to update the blink sketch, the chip resets and the L.E.D blinks fast a few times, but the sketch doesn&#039;t update...

 Have you tried with Xp? Do you know settings for sketch to make the CP2102 work?

 Thanks! great page!!]]></description>
		<content:encoded><![CDATA[<p>Your page is the best source I can find regarding a CP2102. </p>
<p>When I built my diy 328p board it seems  it came with the blink sketch already. Tried to update the blink sketch, the chip resets and the L.E.D blinks fast a few times, but the sketch doesn&#8217;t update&#8230;</p>
<p> Have you tried with Xp? Do you know settings for sketch to make the CP2102 work?</p>
<p> Thanks! great page!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pieter</title>
		<link>http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/comment-page-1/#comment-199222</link>
		<dc:creator>Pieter</dc:creator>
		<pubDate>Thu, 07 Feb 2013 18:31:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.kerrywong.com/?p=2378#comment-199222</guid>
		<description><![CDATA[Thanx, that clears it up. Don&#039;t know if I&#039;m ready to solder a SSOP-28 yet though...

Will the following board work in the mean time? (http://www.mantech.co.za/datasheets/products/PMOD-USBUART_D.pdf) ...or will the 3.3V be a problem?]]></description>
		<content:encoded><![CDATA[<p>Thanx, that clears it up. Don&#8217;t know if I&#8217;m ready to solder a SSOP-28 yet though&#8230;</p>
<p>Will the following board work in the mean time? (<a href="http://www.mantech.co.za/datasheets/products/PMOD-USBUART_D.pdf" rel="nofollow">http://www.mantech.co.za/datasheets/products/PMOD-USBUART_D.pdf</a>) &#8230;or will the 3.3V be a problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kwong</title>
		<link>http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/comment-page-1/#comment-199214</link>
		<dc:creator>kwong</dc:creator>
		<pubDate>Thu, 07 Feb 2013 16:13:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.kerrywong.com/?p=2378#comment-199214</guid>
		<description><![CDATA[Hi Pieter,

Thanks for your comment. I don&#039;t have an FT232RL chip right now, but if you take a look at the schematic for Arduino Duemilanove (http://arduino.cc/en/uploads/Main/arduino-duemilanove-schematic.pdf) you will see that the FT232RL portion of the circuit.

Basically, you will need C4, C8, C10, RTS, C13 as a bare minimum. Pin 1 and Pin 5 (Rx, Tx) of FT232RL along with the reset signal (via R2, C13 to ATmega328&#039;s reset pin) will be used to communicate with Arduino&#039;s UART port (D0, D1). Hopefully this helps.]]></description>
		<content:encoded><![CDATA[<p>Hi Pieter,</p>
<p>Thanks for your comment. I don&#8217;t have an FT232RL chip right now, but if you take a look at the schematic for Arduino Duemilanove (<a href="http://arduino.cc/en/uploads/Main/arduino-duemilanove-schematic.pdf" rel="nofollow">http://arduino.cc/en/uploads/Main/arduino-duemilanove-schematic.pdf</a>) you will see that the FT232RL portion of the circuit.</p>
<p>Basically, you will need C4, C8, C10, RTS, C13 as a bare minimum. Pin 1 and Pin 5 (Rx, Tx) of FT232RL along with the reset signal (via R2, C13 to ATmega328&#8242;s reset pin) will be used to communicate with Arduino&#8217;s UART port (D0, D1). Hopefully this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pieter</title>
		<link>http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/comment-page-1/#comment-199210</link>
		<dc:creator>Pieter</dc:creator>
		<pubDate>Thu, 07 Feb 2013 15:01:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.kerrywong.com/?p=2378#comment-199210</guid>
		<description><![CDATA[Hi Kerry, I always love reading your articles =)

I want to get started with Arduino and found the following project board I&#039;m thinking of buying or clone-ing (http://www.mantech.co.za/datasheets/products/PC14-006-01.pdf).

I was wondering if you can do a similar thread to this one, but showing how to interface the FT232R with the ATMega328 instead of CP2102...?

Thanx in advance and keep up the good work!]]></description>
		<content:encoded><![CDATA[<p>Hi Kerry, I always love reading your articles =)</p>
<p>I want to get started with Arduino and found the following project board I&#8217;m thinking of buying or clone-ing (<a href="http://www.mantech.co.za/datasheets/products/PC14-006-01.pdf" rel="nofollow">http://www.mantech.co.za/datasheets/products/PC14-006-01.pdf</a>).</p>
<p>I was wondering if you can do a similar thread to this one, but showing how to interface the FT232R with the ATMega328 instead of CP2102&#8230;?</p>
<p>Thanx in advance and keep up the good work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: An Arduino Compatible Using CP2102 &#171; Meteo</title>
		<link>http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/comment-page-1/#comment-192819</link>
		<dc:creator>An Arduino Compatible Using CP2102 &#171; Meteo</dc:creator>
		<pubDate>Tue, 03 Apr 2012 12:41:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.kerrywong.com/?p=2378#comment-192819</guid>
		<description><![CDATA[[...] паяльная станция Lukey 702 &#187;  An Arduino Compatible Using CP2102 An Arduino Compatible Using CP2102 An Arduino Compatible Using CP2102  Апрель 3rd, 2012 &#124; Category: [...]]]></description>
		<content:encoded><![CDATA[<p>[...] паяльная станция Lukey 702 &raquo;  An Arduino Compatible Using CP2102 An Arduino Compatible Using CP2102 An Arduino Compatible Using CP2102  Апрель 3rd, 2012 | Category: [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kwong</title>
		<link>http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/comment-page-1/#comment-192120</link>
		<dc:creator>kwong</dc:creator>
		<pubDate>Sun, 19 Feb 2012 02:06:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.kerrywong.com/?p=2378#comment-192120</guid>
		<description><![CDATA[Assuming that you want to use Arduino on your ATmega328p, I&#039;d recommend you reading http://arduino.cc/en/Tutorial/ArduinoISP to get an idea of how to bootloading your Arduino. If you are using ICSP method (e.g. the method I used here http://www.kerrywong.com/2010/04/02/on-atmega328-bootloading-with-ftdi-bitbang-method/), you could load your program without having to use a bootloader.

Check out the Arduino forum, there are a lot of examples there. Good luck.]]></description>
		<content:encoded><![CDATA[<p>Assuming that you want to use Arduino on your ATmega328p, I&#8217;d recommend you reading <a href="http://arduino.cc/en/Tutorial/ArduinoISP" rel="nofollow">http://arduino.cc/en/Tutorial/ArduinoISP</a> to get an idea of how to bootloading your Arduino. If you are using ICSP method (e.g. the method I used here <a href="http://www.kerrywong.com/2010/04/02/on-atmega328-bootloading-with-ftdi-bitbang-method/" rel="nofollow">http://www.kerrywong.com/2010/04/02/on-atmega328-bootloading-with-ftdi-bitbang-method/</a>), you could load your program without having to use a bootloader.</p>
<p>Check out the Arduino forum, there are a lot of examples there. Good luck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jagadeshwaran</title>
		<link>http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/comment-page-1/#comment-192119</link>
		<dc:creator>jagadeshwaran</dc:creator>
		<pubDate>Sun, 19 Feb 2012 02:00:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.kerrywong.com/?p=2378#comment-192119</guid>
		<description><![CDATA[HI
   what is a boot loader and how to load the boot loader in atmega328p.I bought atmega328p ic from sparkfun without the arduino boot loader now i want to load the boot loader please help me im breking my heads
.]]></description>
		<content:encoded><![CDATA[<p>HI<br />
   what is a boot loader and how to load the boot loader in atmega328p.I bought atmega328p ic from sparkfun without the arduino boot loader now i want to load the boot loader please help me im breking my heads<br />
.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Varma Naidu V</title>
		<link>http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/comment-page-1/#comment-184726</link>
		<dc:creator>Varma Naidu V</dc:creator>
		<pubDate>Tue, 03 Jan 2012 13:21:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.kerrywong.com/?p=2378#comment-184726</guid>
		<description><![CDATA[:) it worked. Now I have one more query. How to change the product description string in the EEPROM?

Could you please help me on this?]]></description>
		<content:encoded><![CDATA[<p>:) it worked. Now I have one more query. How to change the product description string in the EEPROM?</p>
<p>Could you please help me on this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kwong</title>
		<link>http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/comment-page-1/#comment-183585</link>
		<dc:creator>kwong</dc:creator>
		<pubDate>Fri, 30 Dec 2011 22:12:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.kerrywong.com/?p=2378#comment-183585</guid>
		<description><![CDATA[You can take a look at a tutorial I did a while ago (http://www.kerrywong.com/2011/09/25/hand-soldering-fine-pitch-lga-chip/), it&#039;s not the easiest thing in the world but definitely doable.]]></description>
		<content:encoded><![CDATA[<p>You can take a look at a tutorial I did a while ago (<a href="http://www.kerrywong.com/2011/09/25/hand-soldering-fine-pitch-lga-chip/" rel="nofollow">http://www.kerrywong.com/2011/09/25/hand-soldering-fine-pitch-lga-chip/</a>), it&#8217;s not the easiest thing in the world but definitely doable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Varma Naidu V</title>
		<link>http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/comment-page-1/#comment-183367</link>
		<dc:creator>Varma Naidu V</dc:creator>
		<pubDate>Fri, 30 Dec 2011 09:01:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.kerrywong.com/?p=2378#comment-183367</guid>
		<description><![CDATA[Hi, I tried soldering by the way you did. But I am getting a short circuit between the pins. how did you solder the way its shown in the picture.
Thank you in anticipation]]></description>
		<content:encoded><![CDATA[<p>Hi, I tried soldering by the way you did. But I am getting a short circuit between the pins. how did you solder the way its shown in the picture.<br />
Thank you in anticipation</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Varma Naidu V</title>
		<link>http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/comment-page-1/#comment-183352</link>
		<dc:creator>Varma Naidu V</dc:creator>
		<pubDate>Fri, 30 Dec 2011 08:05:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.kerrywong.com/?p=2378#comment-183352</guid>
		<description><![CDATA[Thank you, I will follow your circuit diagram.
But one thing that amuses me is that, how did you solder those wires onto it? I tried but was unable to. so I am getting a breakout board for that]]></description>
		<content:encoded><![CDATA[<p>Thank you, I will follow your circuit diagram.<br />
But one thing that amuses me is that, how did you solder those wires onto it? I tried but was unable to. so I am getting a breakout board for that</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kwong</title>
		<link>http://www.kerrywong.com/2010/07/16/an-arduino-compatible-using-cp2102/comment-page-1/#comment-182833</link>
		<dc:creator>kwong</dc:creator>
		<pubDate>Wed, 28 Dec 2011 21:22:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.kerrywong.com/?p=2378#comment-182833</guid>
		<description><![CDATA[This is directly from the reference design and it works pretty well. Other more complex designs may offer more functions (e.g. 3.3v/5v) as this particular one is 5V only.]]></description>
		<content:encoded><![CDATA[<p>This is directly from the reference design and it works pretty well. Other more complex designs may offer more functions (e.g. 3.3v/5v) as this particular one is 5V only.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
