Page 1 of 1

arduino pro micro programming

Posted: Sat Nov 05, 2016 1:39 am
by luibra63
Hi
I have a problem with "arduino micro pro card".
If I create the my program with "arduino micro selected , my card not programmed; for program it, I need select "arduino leonardo card" why?
thanks

Re: arduino pro micro programming

Posted: Mon Nov 07, 2016 2:20 pm
by Benj
Hello,

The Arduino Micro definition file uses this command line.

Code: Select all

<programmer exe="$(appdir)compilers\avr\batchfiles\avrc_arduinoA.bat" params="atmega32u4 avr109 com7 57600 "$(target).hex"" UsesComm="1" />
The Arduino Leonardo uses this command line.

Code: Select all

<programmer exe="$(appdir)compilers\avr\batchfiles\avrc_arduinoA.bat" params="atmega32u4 avr109 com7 57600 "$(target).hex"" UsesComm="1" />
They should be exactly the same. Can you check on the compiler output window what is actually being send with the two targets selected.

Also check the COM port in the project options window is specified correctly.