qmk-firmware/docs/flashing.md

3.1 KiB

Flashing Intrustructions

There are quite a few different types of bootloaders that keyboards use, and just about all of the use a different flashing method. Luckily, projects like the QMK Toolbox aim to be compatible with all the different types without having to think about it much, but this article will describe the different types of bootloaders, and available methods for flashing them.

DFU

Atmel's DFU bootloader comes on all atmega32u4 chips by default, and is used by many keyboards that have their own ICs on their PCBs (Older OLKB boards, Clueboards). Some keyboards may also use LUFA's DFU bootloader (or QMK's fork) (Newer OLKB boards) that adds in additional features specific to that hardware.

These bootloaders are usually 4096 bytes for the atmega32u4 chip.

Compatible flashers:

Flashing sequence:

  1. Press the RESET keycode, or tap the RESET button (or short RST to GND).
  2. Wait for the OS to detect the device
  3. Erase the memory (may be done automatically)
  4. Flash a .hex file
  5. Reset the device into application mode (may be done automatically)

or:

make <keyboard>:<keymap>:dfu

Caterina

Arduino boards and their clones use the Caterina bootloader (any keyboard built with a Pro Micro, or clone), and uses the avr109 protocol to communicate through virtual serial. Bootloaders like A-Star are based on Caterina.

This block of code allows for Caterina compatibility in QMK:

#define CATERINA_BOOTLOADER

These bootloaders are usually 4096 bytes for the atmega32u4 chip.

Compatible flashers:

Flashing sequence:

  1. Press the RESET keycode, or short RST to GND quickly (you only have 7 seconds to flash once it enters)
  2. Wait for the OS to detect the device
  3. Flash a .hex file
  4. Wait for the device to reset automatically

or

make <keyboard>:<keymap>:avrdude

Halfkay

Halfkay is a super-slim protocol developed by PJRC that uses HID, and come on all Teensys (namely the 2.0).

This bootloader is 512 bytes.

Compatible flashers:

Flashing sequence:

  1. Press the RESET keycode, or short RST to GND quickly (you only have 7 seconds to flash once it enters)
  2. Wait for the OS to detect the device
  3. Flash a .hex file
  4. Reset the device into application mode (may be done automatically)