https://github.com/help-14/arisu-handwired
Keyboard firmware for arisu style keyboard.
https://github.com/help-14/arisu-handwired
Last synced: 8 months ago
JSON representation
Keyboard firmware for arisu style keyboard.
- Host: GitHub
- URL: https://github.com/help-14/arisu-handwired
- Owner: help-14
- License: mit
- Created: 2020-04-03T15:17:46.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-09T08:24:00.000Z (about 6 years ago)
- Last Synced: 2025-08-28T10:48:24.542Z (10 months ago)
- Language: Rust
- Size: 300 KB
- Stars: 14
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Arisu Handwired
Keyboard firmware for arisu style keyboard handwired using cheap STM32F401.
The firmware is [keyberon](https://github.com/TeXitoi/keyberon).

## Install the rust toolchain
```
curl https://sh.rustup.rs -sSf | sh
rustup target add thumbv7em-none-eabihf
rustup component add llvm-tools-preview
cargo install cargo-binutils
```
## Compiling
`
cargo objcopy --bin keyberon-f4 --release -- -O binary keyberon.bin
`
## Flashing using DFU
Press boot + restart to get into dfu mode.
`
dfu-util -d 0483:df11 -a 0 --dfuse-address 0x08000000 -D keyberon.bin
`