Take the 2-minute tour ×
Arduino Stack Exchange is a question and answer site for developers of open-source hardware and software that is compatible with Arduino. It's 100% free, no registration required.

does anyone tried to program the Arduino Mega with an FTDI chip like in the Arduino Nano (this is for a custom design) Will it work?

Thanks!

share|improve this question
1  
That will work. The only think to look out for is how to reset the board. Either manually reset it before uploading, or connect the DTR pin of the FTDI, via a capacitor, to the reset pin. –  Gerben Mar 12 at 16:46

1 Answer 1

The Arduino Mega already has a built-in USB-UART bridge, so there's no need for a separate chip.

The ATmega1280 on the other hand is just a bare AVR MCU and does require either a separate USB-UART bridge for serial programming (provided it is programmed with an appropriate bootloader) or an ISP programmer for ISP programming.

share|improve this answer
    
Sorry, I expressed my self wrong. My goal is to program the Atmega2560 (with the bootloader already burned in) with the FTDI chip instead the AVR USB bridge from the Arduino Mega original design. Do you think that might work assuming the connections are correct? Or in other words, is the Arduino IDE expecting some sort of response from the programmer that the AVR bridge will provide and the FTDI will not? –  Arcu Mar 12 at 15:01
    
The FTDI chip is a USB-UART bridge, so I would expect not. But to be perfectly honest, I'd use a ISP programmer and save myself the cost of the bridge and the time of burning the bootloader. –  Ignacio Vazquez-Abrams Mar 12 at 15:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.