Home

Awesome

MightyCore

Build Status MegaCore forum thread

An Arduino core for ATmega8535, ATmega16, ATmega32, ATmega164, ATmega324, ATmega644 and ATmega1284, all running the Urboot bootloader. Most Arduino UNO-compatible libraries will work with this core. If not, it's fairly straightforward to port a library. This core requires at least Arduino IDE v1.6, where v1.8.9 or newer is recommended. IDE 2.x should also work.

From MightyCore version 3 and onwards, the Optiboot bootloader has been replaced by the superior Urboot bootloader. It's smaller, faster, and has automatic baud rate detection. Other cool features the bootloader provides but are not utilized by MightyCore are user program metadata stored in flash that (can easily be viewed by Avrdude -xshowall) and chip erase functionality. If you already have Optiboot installed and don't want to replace it with Urboot, you can still upload programs without any compatibility issues. However, if you're burning a bootloader to a new chip, Urboot is the way to go.

If you're looking for a great development board for these DIP-40 microcontrollers, I got you covered! I've used the Arduino UNO for years, but felt like vital functionality was missing on the board. When designing this board I made sure all missing functionality was added. The board can be bought on my Tindie store. <br/> Read more in the hardware section below. <br/>

<br/> <img src="https://i.imgur.com/MYKePw6.jpg" width="400"><img src="https://i.imgur.com/LUwmwrR.jpg" width="400">

Table of contents

Supported microcontrollers

All variants - P, PA, A, PB. Select the correct version in the 'Variant' menu <br/> <br/> Can't decide what microcontroller to choose? Have a look at the specification table below:

mega1284mega644mega324mega164mega32mega16mega8535
Flash128kiB64kiB32kiB16kiB32kiB16kiB8kiB
RAM16kiB4kiB2kiB1kiB2kiB1kiB0.5kiB
EEPROM4kiB2kiB1kiB0.5kiB0.5kiB0.5kiB0.5kiB
Serial ports222/3*2111
PWM pins866/9*6444
IO pins323232/39*32323232

<b>*</b> ATmega324PB has 3 serial ports, 9 PWM pins, and 39 IO pins if the internal oscillator is used.

Supported clock frequencies

MightyCore supports a variety of different clock frequencies. Select the microcontroller in the boards menu, then select the clock frequency. You will have to hit "Burn bootloader" in order to set the correct fuses and upload the correct bootloader. This also has to be done if you want to change any of the fuse settings (BOD and EEPROM settings) regardless if a bootloader is installed or not. Make sure you connect an ISP programmer, and select the correct one in the "Programmers" menu. For time-critical operations, an external crystal/oscillator is recommended. The Urboot bootloader has automatic baud rate detection, so UART uploads should work fine even though the oscillator is a little too fast or too slow.

FrequencyOscillator typeDefault upload speed <br/>(bootloader has auto-baud)Comment
16 MHzExternal crystal/oscillator115200Default clock on most AVR based Arduino boards
20 MHzExternal crystal/oscillator115200
18.4320 MHzExternal crystal/oscillator115200Great clock for UART communication with no error
14.7456 MHz External crystal/oscillator115200Great clock for UART communication with no error
12 MHzExternal crystal/oscillator57600
11.0592 MHzExternal crystal/oscillator115200Great clock for UART communication with no error
9.216 MHzExternal crystal/oscillator115200Great clock for UART communication with no error
8 MHzExternal crystal/oscillator57600Common clock when working with 3.3V
7.3728 MHzExternal crystal/oscillator115200Great clock for UART communication with no error
6 MHzExternal crystal/oscillator57600
4 MHzExternal crystal/oscillator9600
3.6864 MHzExternal crystal/oscillator115200Great clock for UART communication with no error
2 MHzExternal crystal/oscillator9600
1.8432 MHzExternal crystal/oscillator115200Great clock for UART communication with no error
1 MHzExternal crystal/oscillator9600
8 MHzInternal oscillator38400Might cause UART upload issues. See comment above
4 MHzInternal oscillator9600Derived from the 8 MHz internal oscillator
2 MHzInternal oscillator9600Derived from the 8 MHz internal oscillator
1 MHzInternal oscillator9600Derived from the 8 MHz internal oscillator

Bootloader option

MightyCore lets you select which serial port you want to use for uploading. UART0 is the default port for all targets, but ATmega324/644/1284 can also use UART1 for upload. If your application doesn't need or require a bootloader for uploading you can also choose to disable it by selecting No bootloader. This frees 384 bytes of flash memory on ATmega8535/16/32/164/324 and 512 bytes on ATmega644/1284.

Note that you need to connect a programmer and hit Burn bootloader if you want to change any of the Bootloader settings.

Baud rate option

Since Urboot has automatic baud rate detection, the upload baud rate can be changed without having to re-flash the bootloader. The default baud rate setting will pick a suited baud rate that also works with the legacy Optiboot bootloader used in earlier MightyCore versions. The other baud rate options may or may not work, depending on the clock frequency and accuracy of the clock source. A rule of thumb is that "non-round" baud rates like 230400 works best with "non-round" clock speeds like 18.4320 MHz, while "round" ones like 16 MHz work best with "round" baud rates like 250000.

BOD option

Brown-out detection, or BOD for short lets the microcontroller sense the input voltage and shut down if the voltage goes below the brown-out setting. To change the BOD settings you'll have to connect an ISP programmer and hit "Burn bootloader". Below is a table that shows the available BOD options: <br/>

ATmega1284Atmega644ATmega324ATmega164ATmega32ATmega16ATmega8535
4.3V4.3V4.3V4.3V4.0V4.0V4.0V
2.7V2.7V2.7V2.7V2.7V2.7V2.7V
1.8V1.8V1.8V1.8V---
DisabledDisabledDisabledDisabledDisabledDisabledDisabled

EEPROM option

If you want the EEPROM to be erased every time you burn the bootloader or upload using a programmer, you can turn off this option. You'll have to connect an ISP programmer and hit "Burn bootloader" to enable or disable EEPROM retain. Note that when uploading using a bootloader, the EEPROM will always be retained.

Note that if you're using an ISP programmer or have the Urboot bootloader installed, data specified in the user program using the EEMEM attribute will be uploaded to EEPROM when you upload your program in Arduino IDE. This feature is not available when using the older Optiboot bootloader.

#include <avr/eeprom.h>

volatile const char ee_data EEMEM = {"Data that's loaded straight into EEPROM\n"};

void setup() {
}

void loop() {
}

Link time optimization / LTO

Link time optimization (LTO for short) optimizes the code at link time, usually making the code significantly smaller without affecting performance. You don't need to hit "Burn Bootloader" in order to enable or disable LTO. Simply choose your preferred option in the "Tools" menu, and your code is ready for compilation. If you want to read more about LTO and GCC flags in general, head over to the GNU GCC website!

Printf support

Unlike the official Arduino cores, MightyCore has printf support out of the box. If you're not familiar with printf you should probably read this first. It's added to the Print class and will work with all libraries that inherit Print. Printf is a standard C function that lets you format text much easier than using Arduino's built-in print and println. Note that this implementation of printf will NOT print floats or doubles. This is disabled by default to save space but can be enabled using a build flag if using PlatformIO.

If you're using a serial port, simply use Serial.printf(F("Milliseconds since start: %ld\n"), millis());. As you can see, printf supports the F() macro, but you don't have to use it. Other libraries that inherit the Print class (and thus support printf) are the LiquidCrystal LCD library and the U8G2 graphical LCD library.

Pin macros

Note that you don't have to use the digital pin numbers to refer to the pins. You can also use some predefined macros that map "Arduino pins" to the port and port number:

// Use PIN_PB0 macro to refer to pin PB0 (Arduino pin 0 with the standard and Sanguino pinout)
digitalWrite(PIN_PB0, HIGH);

// Results in the exact same compiled code
digitalWrite(0, HIGH);

Write to own flash

MightyCore uses the excellent Urboot bootloader, written by Stefan Rueger. Urboot supports flash writing within the running application, meaning that content from e.g. a sensor can be stored in the flash memory directly without needing external memory. Flash memory is much faster than EEPROM, and can handle at least 10,000 write cycles before wear becomes an issue. For more information on how it works and how you can use this in your own application, check out the Serial_read_write for a simple proof-of-concept demo, and Flash_get_put + Flash_iterate for useful examples on how you can store strings, structs, and variables to flash and retrieve then afterward.

PROGMEM with flash sizes greater than 64kiB

The usual PROGMEM attribute stores constant data such as string arrays to flash and is great if you want to preserve the precious RAM. However, PROGMEM will only store content in the lower section, from 0 and up to 64kiB. If you want to store data in the upper section, use PROGMEM1 (64 - 128kiB) if your target is an ATmega1284/P. Accessing this data is not as straightforward as with PROGMEM, but it's still doable:

const char far_away[] PROGMEM1 = "Hello from far away!\n"; // (64  - 128kiB)

void print_progmem()
{
  char c;

  // Print out far_away
  for(uint8_t i = 0; i < sizeof(far_away); i++)
  {
    c = pgm_read_byte_far(pgm_get_far_address(far_away) + i);
    Serial.write(c);
  }
}

Pinout

This core has three different pinout options:

Please have a look at the (pins_arduino.h) files for detailed info. Pick your favorite!</br> </br> <b>Click to enlarge:</b>

MightyCore Standard pinoutMightyCore Bobuino pinoutMightyCore Sanguino pinout
<img src="https://i.imgur.com/zBNPc5b.png" width="260"><img src="https://i.imgur.com/K34xZb4.jpg" width="260"><br/><img src="https://i.imgur.com/TTfOkyF.jpg" width="260"><img src="https://i.imgur.com/QA66Rfq.png" width="260"><img src="https://i.imgur.com/fYLCeb0.jpg" width="260"><br/><img src="https://i.imgur.com/rNjIzfF.jpg" width="260"><img src="https://i.imgur.com/xcxjLKE.png" width="260"><img src="https://i.imgur.com/6CNohI4.jpg" width="260"><br/><img src="https://i.imgur.com/e1TzsVN.jpg" width="260">

Programmers

Select your microcontroller in the boards menu, then select the clock frequency. You'll have to hit "Burn bootloader" in order to set the correct fuses and upload the correct bootloader. <br/> Make sure you connect an ISP programmer, and select the correct one in the "Programmers" menu. For time-critical operations, an external oscillator is recommended.

How to install

Boards Manager Installation

This installation method requires Arduino IDE version 1.8.0 or greater.

Manual Installation

Click on the "Download ZIP" button. Extract the ZIP file, and move the extracted folder to the location "~/Documents/Arduino/hardware". Create the "hardware" folder if it doesn't exist. Open Arduino IDE and a new category in the boards menu called "MightyCore" will show up.

Arduino CLI Installation

Run the following command in a terminal:

arduino-cli core install MightyCore:avr --additional-urls https://mcudude.github.io/MightyCore/package_MCUdude_MightyCore_index.json

PlatformIO

PlatformIO is an open-source ecosystem for IoT and embedded systems, and supports MightyCore.

See PlatformIO.md for more information.

Getting started with MightyCore

Your code should now be running on the microcontroller!

Wiring reference

To extend this core's functionality a bit further, I've added a few missing Wiring functions. As many of you know Arduino is based on Wiring, but that doesn't mean the Wiring development isn't active. These functions are used as "regular" Arduino functions, and there's no need to include an external library.<br/> I hope you find this useful because they really are!

Function list

For more information please view the Wiring reference page

Library porting

Some users have reported issues when trying to use some 3rd party libraries with the ATmega8535, ATmega16, or ATmega32. A simple guide on how to port a library can be found <b>here</b>.

Hardware

I've designed a development board for this particular core. I've added all the functionality I missed with the original Arduino boards and added the original AVR pinout. Not all supported microcontrollers have the same pin functions, and differences are highlighted. The boards measures 8.0 * 10.0 cm (3.15 * 3.94 in)<br/> The development board has some additional unique features:

The development board can be bought on my Tindie store. This includes a pre-programmed ATmega32 chip. <br/>

<br/> Click the images for full resolution <br/>

Development board front <br/>

Development board back <br/>

Bottom row

Minimal setup

Here is a simple schematic showing a minimal setup using an external crystal. Skip the crystal and the two capacitors if you're using the internal oscillator. <br/> <b>Click to enlarge:</b>

DIP-40 packageTQFP-44 SMD packageATmega324PB SMD package
<img src="https://i.imgur.com/pCiKton.png" width="280"><img src="https://i.imgur.com/5aKLRp0.png" width="280"><img src="https://i.imgur.com/679DBWF.png" width="280">