WARNING: This server is unstable and will be retired in the next days. If you want to keep this forum available, please request immediately a migration on the Nabble Support forum. Forums that don't receive any migration request will be deleted forever.

 « Return to Thread: Reset function for arduino

Re: Reset function for arduino

by uracolix :: Rate this Message:

| View in Thread


Am Dienstag, 24. August 2010 20:40:18 schrieb David A. Mellis:
> All of the Arduino boards we've shipped with auto-reset have used a
> capacitor, not a resistor, to connect RTS/DTR to the microcontroller's
> reset pin, so I'm not sure this is necessary.

I recently stumbled across this effect too. I have an
arduino-2009 clone with capacitor for auto reset. The reset
signal looks reasonable at the scope.

For one trial after plugin I'm able to programm the target, for
the next trial, the handshake lines seems to be left in a wrong state.

A little Python snippet helps me to overcome this issue, but thats
not the intented use of Arduino.

===========
import sys, serial
try:
    PORT = sys.argv[1]
except:
    PORT = "/dev/ttyUSB2"
s = serial.Serial(PORT)
s.setDTR(0)
s.setRTS(0)
===========

This happens with avrdude: Version 5.8, compiled on Dec 23 2009 at 21:39:05

Cheers, Axel

_______________________________________________
avrdude-dev mailing list
avrdude-dev@...
http://lists.nongnu.org/mailman/listinfo/avrdude-dev

 « Return to Thread: Reset function for arduino