2020-01-26 01:38:24 +00:00
|
|
|
# Onyx Keyboard Firmware #
|
2020-01-25 20:49:11 +00:00
|
|
|
|
2020-01-26 01:38:24 +00:00
|
|
|
This section intentionally left blank
|
2020-01-25 20:49:11 +00:00
|
|
|
|
2020-01-26 01:38:24 +00:00
|
|
|
## Setup ##
|
2020-01-25 20:49:11 +00:00
|
|
|
|
2020-01-26 01:38:24 +00:00
|
|
|
```bash
|
|
|
|
# Install toolchains
|
|
|
|
trizen -S arm-none-eabi-binutils bossa
|
|
|
|
rustup target add thumbv6m-none-eabi
|
2020-01-25 20:49:11 +00:00
|
|
|
|
2020-01-26 01:38:24 +00:00
|
|
|
# Build
|
|
|
|
make
|
2020-01-25 20:49:11 +00:00
|
|
|
|
2020-01-26 01:38:24 +00:00
|
|
|
# Upload to metro m0 board
|
|
|
|
make upload
|
2020-01-25 20:49:11 +00:00
|
|
|
```
|