Sign up ×
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.

I hava an Arduino Duemilanove but I think that its FTDI chip is crashed.

I have an Arduino Mega too, so can I use it to program my Duemilanove?

share|improve this question

1 Answer 1

up vote 1 down vote accepted

Yes, this is not an uncommon activity. This is called using an Arduino as an In-System Programmer (ISP)

This page has the information and Arduino program you need. You'll need to adjust for the Arduino Mega pin differences, but that's fairly easy. http://arduino.cc/en/Tutorial/ArduinoISP

Where the ArduinoISP page references pin 13, on the Mega it's pin 52. Where the ArduinoISP page references pin 12, on the Mega it's pin 50. Where the ArduinoISP page references pin 11, on the Mega it's pin 51. Where the ArduinoISP page references pin 10, on the Mega it's pin 53.

Otherwise you should be able to connect the Mega to the patient in the same way as described, load the ArduinoISP sketch into the Mega, preferably from the GitHub repository linked in the article (https://github.com/rsbohn/arduinoisp).

share|improve this answer
    
Thank you very much for your answer :D – Tanishq Jaiswal Jan 3 at 17:54

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.