SkillAgentSearch skills...

MajorCore

An Arduino hardware package for ATmega8515 and ATmega162

Install / Use

/learn @MCUdude/MajorCore
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

MajorCore

An Arduino core for large, 8051 pin compatible, breadboard friendly AVRs, all running the Urboot bootloader. This core requires at least Arduino IDE v1.8, where v1.8.9 or newer is recommended, but if you want to debug using a hardware debugger, you'll need Arduino IDE 2.x.

From version 3.1.0 onwards, debugging in the Arduino IDE 2 is supported. You can use any of Microchip's EDBG-based hardware debuggers. For documentation, see https://pyavrocd.io.

From MajorCore 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, and can read and write to EEPROM. Other cool features the bootloader provides but are not utilized by MajorCore 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.

Table of contents

Supported microcontrollers

  • ATmega162
  • ATmega8515

Supported clock frequencies

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

| Frequency | Oscillator type | Default upload speed <br/>(bootloader has auto-baud) | Comment | |-------------|-----------------------------|-------------------------------------------------------|---------------------------------------------------| | 16 MHz | External crystal/oscillator | 115200 | Default clock on most AVR based Arduino boards | | 20 MHz | External crystal/oscillator | 115200 | | | 18.4320 MHz | External crystal/oscillator | 115200 | Great clock for UART communication with no error | | 14.7456 MHz | External crystal/oscillator | 115200 | Great clock for UART communication with no error | | 12 MHz | External crystal/oscillator | 57600 | | | 11.0592 MHz | External crystal/oscillator | 115200 | Great clock for UART communication with no error | | 9.216 MHz | External crystal/oscillator | 115200 | Great clock for UART communication with no error | | 8 MHz | External crystal/oscillator | 57600 | Common clock when working with 3.3V | | 7.3728 MHz | External crystal/oscillator | 115200 | Great clock for UART communication with no error | | 6 MHz | External crystal/oscillator | 57600 | | | 4 MHz | External crystal/oscillator | 9600 | | | 3.6864 MHz | External crystal/oscillator | 115200 | Great clock for UART communication with no error | | 2 MHz | External crystal/oscillator | 9600 | | | 1.8432 MHz | External crystal/oscillator | 115200 | Great clock for UART communication with no error | | 1 MHz | External crystal/oscillator | 9600 | | | 8 MHz | Internal oscillator | 38400 | Might cause UART upload issues. See comment above | | 4 MHz | Internal oscillator | 9600 | Derived from the 8 MHz internal oscillator | | 2 MHz | Internal oscillator | 9600 | Derived from the 8 MHz internal oscillator | | 1 MHz | Internal oscillator | 9600 | Derived from the 8 MHz internal oscillator |

Bootloader option

MajorCore lets you select which serial port you want to use for uploading. UART0 is the default port for all targets, but ATmega162 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 ATmega8/88/168/328 and 320 bytes on the ATmega48.

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 MajorCore 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/>

| ATmega162 | ATmega8515 | |-----------|------------| | 4.3V | 4.0V | | 2.7V | 2.7V | | 1.8V | - | | Disabled | Disabled |

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, MajorCore 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("Milliseconds since start: %ld\n", millis());. You can also use the F() macro if you need to store the string in flash. Other libraries that inherit the Print class (and thus supports printf) are the LiquidCrystal L

View on GitHub
GitHub Stars45
CategoryDevelopment
Updated6d ago
Forks14

Languages

C++

Security Score

95/100

Audited on Mar 28, 2026

No findings