From owner-freebsd-questions@FreeBSD.ORG Mon May 14 06:31:03 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1A8631065672 for ; Mon, 14 May 2012 06:31:03 +0000 (UTC) (envelope-from fernando.apesteguia@gmail.com) Received: from mail-lpp01m010-f54.google.com (mail-lpp01m010-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id 9189D8FC1F for ; Mon, 14 May 2012 06:31:02 +0000 (UTC) Received: by laai10 with SMTP id i10so3095685laa.13 for ; Sun, 13 May 2012 23:31:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=hTaNzfk153VeZalrLLIZOOId+mVg0EEAPSGzBF2P+3Y=; b=pTCLYJiGqeJr9NxvNh3X3g7hSrswVf03xpeaO3htvLV2JZpWrS/s99Xdr4iPWZXciV RjuKqpMn2G18RcAcIMPwcKz92rnrpbHnKuctzszAHFDWvcH0SazinAk9Wx9tAjlxnglt 9j8GHtS0Jk/Htaqqg2gdxKiALDsefF/uJq43YBlmjie+rVXg9QhNpTAWIShsqRtCWlOl wcy6qT9G0WAviJFyJA+1w87I2bWvfAdK0vDhsi8eXjEXWDgML67qGBwdHbOjydji/FR7 RKMwe8mhqxLnu46lROKqXGG+KgQH8wqcWnYaMuktBi7SFDPndOiOqeXKv470jJWoHEFe 7b7Q== MIME-Version: 1.0 Received: by 10.112.29.166 with SMTP id l6mr1513685lbh.68.1336977061194; Sun, 13 May 2012 23:31:01 -0700 (PDT) Received: by 10.152.24.131 with HTTP; Sun, 13 May 2012 23:31:01 -0700 (PDT) In-Reply-To: <20120513182051.GA63499@hs1.VERBENA> References: <20120513182051.GA63499@hs1.VERBENA> Date: Mon, 14 May 2012 08:31:01 +0200 Message-ID: From: =?ISO-8859-1?Q?Fernando_Apestegu=EDa?= To: Colin Barnabas Content-Type: text/plain; charset=ISO-8859-1 Cc: FreeBSD Questions Subject: Re: avrdude and arduino X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 May 2012 06:31:03 -0000 On Sun, May 13, 2012 at 8:20 PM, Colin Barnabas wrote: > Has anyone been able to get the Arduino Uno board working with > avrdude? I keep getting programmer not responding errors. Not for the Uno, but I got Arduino Duemilanove working. > > avrdude: ser_recv(): programmer is not responding > avrdude: stk500_recv(): programmer is not responding This is typical when the microcontroller is somehow busy or stuck. > > > This is the command I'm using: > > %sudo avrdude -F -v -v -v -v -c arduino -p ATMEGA328P -P /dev/cuaU0 -U flash:w:flash.hex This is what I use for Duemilanove sudo avrdude -V -F -c stk500v1 -p m168 -b 19200 -P /dev/cuaU0 -U flash:w:flash.hex (Arduino) I also have a Pololu 3pi[1] which uses an ATmega328 and I can download the software into the chip using this: sudo avrdude -c avrispv2 -p m168 -P /dev/cuaU0 -U flash:w:test.hex (Pololu) HTH [1] http://www.pololu.com/catalog/product/975 > > Any suggestions would be much appreciated. > > > -- > Colin Barnabas > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"