21 lines
519 B
Markdown
21 lines
519 B
Markdown
# Keyboard Firmware
|
|
|
|
This repository contains the firmware for the `keyboardeeroy_jenkins` keyboard.
|
|
|
|
## Build and flash
|
|
|
|
1. Init submodules and build firmware
|
|
```bash
|
|
$ git submodule update --init --recursive
|
|
$ ./build.sh
|
|
```
|
|
2. Back up current firmware (optional)
|
|
```bash
|
|
$ picotool save --all left.bin # Left half
|
|
$ picotool save --all right.bin # Right half
|
|
```
|
|
3. Flash both keyboard halves
|
|
```bash
|
|
$ picotool load keyboardeeroy_jenkins_default.uf2 # Both halves
|
|
```
|