Questions tagged [avrdude]

AVRDUDE is used in development for Atmel AVR microcontrollers to access the contents of the ROM/EEPROM memories on the target platforms.

AVRDUDE is a set of tools to manipulate the memory on Atmel AVR microcontrollers. It's a commandline utility available for many POSIX-compatible operating systems and Windows.

It can be used to manipulate the

  • ROM
  • EEPROM

of AVRs. The following operations are supported:

  • download
  • upload
  • in-place manipulation
199 questions
3
votes
1 answer

Run avrdude on Android with Samsung devices

Hi members of stackoverflow.com! I try to build an app in Android that can upload HEX file generated by avr-gcc. I installed the AndAVR this chaintool http://code.google.com/p/andavr/ to run avrdude (in root devices with USB-OTG cable) I use this…
3
votes
1 answer

AVRDUDE Android Arduino ioctl error

My previous question, Android cannot talk to Arduino using AVRDUDE, has been resolved. I can now connect my Nexus 7 to my Arduino Uno. The full command I am running is this: /system/xbin/su (getting root…
HansStam
  • 509
  • 2
  • 9
  • 22
3
votes
2 answers

Android cannot talk to Arduino using AVRDUDE

I am using AVRDUDE for Android (http://code.google.com/p/andavr/). I can compile the C code. I can run $ avr-gcc -Os -DF_CPU=16000000UL -mmcu=atmega328p -c -o led.o led.c $ avr-gcc -mmcu=atmega328p led.o -o led $ avr-objcopy -O ihex -R .eeprom led…
HansStam
  • 509
  • 2
  • 9
  • 22
3
votes
2 answers

ATtiny programming a function - appears to freeze

I am new to programming ATtiny chips. I ran the equivalent program to this on an Arduino and it worked, but when running it on an ATtiny2313, although no error message appears, the program appears to freeze. All of PORTB is connected to LEDs, and…
3
votes
1 answer

avrdude.exe: invalid file format ' ' in update specifier error after setting up AVR studio 6 external tools

I have set up avr studio 6 as an Arduino IDE with the help of the tutorial at: http://www.engblaze.com/tutorial-using-atmel-studio-6-with-arduino-projects/#final I added an external tool as described in the tutorial and used the following…
user1243742
  • 33
  • 2
  • 5
3
votes
1 answer

Avrdude config linux

I'm trying ubuntu 12.10. I want to use Eclipse IDE + avrdude. The problem is, that I have a custom ft232rl programmer, which is not included in standard avrdude configuration. In windows I would add #FTDI_Bitbang programmer id = "ftbb"; desc …
user1685095
  • 5,787
  • 9
  • 51
  • 100
3
votes
1 answer

AVR Dragon & Arduino (mega1280) Cannot enter programming mode

I recently purchased an Arduino with an atmega1280 on it. I did not get it to use the Arduino IDE but just as a handy board to use with AVR Studio and my Dragon. I purchased a new computer around the same time and it is running windows 7 64bit, I…
uMinded
  • 595
  • 1
  • 9
  • 21
2
votes
2 answers

AVR ISP MKII, avrdude, Ubuntu 11.10

So, I have had this working on Ubuntu before. But then I upgraded to 11.10. Now, no such luck. Note: if you are still messing with getting this to work on eclipse, you might want to try this command line stuff... if it doesnt work here, its not…
SpiRail
  • 1,377
  • 19
  • 28
2
votes
1 answer

How to read the fuses with avrdude

I have ea new stk500v2 programmer (Pololu) and want to read the fuses of an atmega8. With my old programmer I uses the command avrdude -v -p atmega8 -P /dev/cu.usbmodem002938642 -c stk500v2 and got the lfuse and hfuse on 2 lines Now I only…
heimi
  • 499
  • 7
  • 16
2
votes
1 answer

How to Uninstall Git for Windows SDK?

Git for Windows SDK apparently uses over 5.25GB of disk space and I have no use for developer kit bloat. Now I want to uninstall but I could not find any instructions online or in documentation. On Windows 7 after install there is no uninstall.exe…
SystemTheory
  • 339
  • 3
  • 15
2
votes
1 answer

change Start address .hex in atmel studio7

I'm doing a bootloader for AVR in ATMELStudio7, when generating the .hex it is created from the address 0x00 but the bootloader has to go from the address 0x1e000, if anyone knows how to change this in the compiled options I would appreciate it.
2
votes
2 answers

Wrapper library for avrdude

The problem: Through an Android app, be able to programmatically verify arduino flash contents to ensure it has not been changed (maliciously) I am able to do that with avrdude using the command as below in the android adb shell avrdude…
kev
  • 1,148
  • 2
  • 14
  • 29
2
votes
1 answer

Disabling interrupts on TX pin on Arduino Mega 2560

I'll start telling that the reference on the function serialEvent is not very well documented for Arduino. https://www.arduino.cc/en/Reference/SerialEvent Due to the lack of information I've misunderstood how this function works. As I have the…
Ruso_x
  • 347
  • 1
  • 3
  • 14
2
votes
1 answer

How to give Full Path name in avrdude command?

I thought of using fully qualified absolute path name in avrdude command. But I am getting error "Invalid File Format" I tried with following two options. But both of them does not work. Even I tried / instead of \ in path name. avrdude…
Mahesha Padyana
  • 431
  • 6
  • 22
2
votes
1 answer

AT32UC3B0512 project compiled as AT32UC3B0256 -> Consequences

I just figured out that I have compiled and programmed my AT32UC3B0512 project using the AT32UC3B0256 as target device. My application seams to work without problems. Is that possible? What are the differences between AT32UC3B0512 and AT32UC3B0256…
1
2
3
13 14