The programmer panel in the program devices visualizer uploads a program binary file (.hex) to an Arduino without using the Arduino IDE.

You can also upload a bootloader and set fuses using the Programmer panel and a special .musx Arduino bootloader configuration file.

The Programmer panel is useful when you want to setup several devices with the same program or are using a 3rd Party IDE to write your Arduino software. It uses AVRDude, the same tool used by the Arduino IDE for uploading programs.

Overview

The key steps to set up programming an Arduino using MegunoLink are:

  1. Add a programmer panel to the program devices visualizer,
  2. Locate the .hex binary file containing the program to upload,
  3. Select the programmer type, device type and COM port (for serial bootloaders),

Click the Program button to start programming.

Building a custom board?

Our e-book Commissioning Custom Arduino Devices tells you all you need to know to get your device up and running quickly.

Creating a Panel to Upload Programs

Click the Add Programmer button (or select Programmer) from the menu bar on the Program Devices visualizer. A new upload panel will be created.

Upload Program Panel

The Program Devices panel for uploading .hex files to your Arduino

Along the top-row of the programmer panel is a description and the source path. The second row lets you configure the programming hardware, device and port to use. The Program button on the last row starts programming the device. It is followed by a lock (to prevent accidental programming), verify and auto-program buttons. A bar shows progress during programming and the console button shows raw output from the AVRDude programming tool.

The time that the .hex file was last modified and the time it was last uploaded are shown in the bottom right corner of the upload panel.

Finding the Arduino Binary File

Choose Sketch → Export compiled Binary in the Arduino IDE to obtain the binary file required to program your Arduino. The IDE will compile your program and copy the .hex file into the same folder as your sketch (.ino file). It will be named [sketchname].ino.standard.hex. This is the file you’ll use with MegunoLink.

To write the version that includes the bootloader, you will need to set fuses on the chip as well. You can use a MegunoLink programming package to do that.

Description and Multiple Panels

The description is a name for your upload panel. You can add as many upload panels as you like to the Program Devices visualizer. The description helps keep track of what each panel is for. You might have multiple upload panels for:

  • test-programs
  • final program
  • sender and receiver in a wireless system
  • versions for different Arduino (Uno and Mega, for example)
  • programming multiple devices at once

You can start each programmer separately (with the Program button), all together or one after another. See Programming Sequences for more information.

Source File

The source is the path to the .hex file. Use the browse button to choose the source file.

The path can be absolute or relative to the MegunoLink project file. Relative paths let you move your project and .hex files between computers without having to update the source path. Right-click on the file-path to change between the two options.

The last-modified time for the .hex file and the last time the device was programmed are shown in the bottom right corner of the panel.

Along with .hex files, MegunoLink supports a special file-format called a programming package file (.musx). This special file format can be used to upload bootloaders and adjust fuses on the device. Learn more about Programming Packages.

Programmer Settings

The second row lets you configure programming options: programming hardware, target device and the port.

The most common programming programming hardware, like the Arduino IDE, is just a USB serial port. But MegunoLink supports a few programmers including:

  • Arduino Serial: the standard serial programmer used with COM ports.
  • AVR Dragon: AVR’s Dragon debugger and programmer.
  • AVR Mk II ISP: AVR’s ISP programmer.
  • Arduino ISP: use one Arduino to program another.

Only the AVR dragon, AVR Mk II ISP and Arduino ISP programmers support changing the bootloader and setting fuses. See programming package for more information.

Next is the board type. You must select the same device you used when creating the .hex file in the Arduino IDE. This must also match the device you are trying to program!

Finally, select the COM port that your board is connected to if you are using the Arduino Serial programmer. USB is the only port supported for the other programmers.

On the bottom row, the:

  1. The Program button starts programming,
  2. Lock prevents programming (if you accidentally click the program button),
  3. Verify enables/disables verification of the program. When turned on, the program is read back after it has been written and compared with the original file to ensure no errors occurred during programming,
  4. Auto-program will automatically reprogram the device whenever it detects a change in the .hex file. This is particularly useful during development when you are making frequent changes to the program and uploading them to the device for testing.

Start Programming

Click the Program button to start programming. If the button is grayed out, either:

  1. the source file doesn’t exist (right-click the source file and choose Open containing folder to see if the source-file still exists), or
  2. programming locked (press the Lock button to unlock it).

Output from AVRDude is captured during programming. You can see this output by clicking Show upload details on the visualizer toolbar, or by clicking the Show Output button on the programming panel.

Start typing and press Enter to search