arduino pro micro programming

For Flowcode users to discuss projects, flowcharts, and any other issues related to Flowcode 7.

Moderator: Benj

Post Reply
luibra63
Posts: 36
Joined: Mon Aug 29, 2016 3:21 pm
Has thanked: 3 times
Been thanked: 6 times
Contact:

arduino pro micro programming

Post 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

User avatar
Benj
Matrix Staff
Posts: 15312
Joined: Mon Oct 16, 2006 10:48 am
Location: Matrix TS Ltd
Has thanked: 4803 times
Been thanked: 4314 times
Contact:

Re: arduino pro micro programming

Post 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.

Post Reply