-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: HaoboGu <[email protected]>
- Loading branch information
Showing
5 changed files
with
212 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Deploy Docs | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write # To push a branch | ||
pages: write # To push to a GitHub Pages site | ||
id-token: write # To update the deployment status | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install latest mdbook | ||
run: | | ||
tag=$(curl 'https://api.github.com/repos/rust-lang/mdbook/releases/latest' | jq -r '.tag_name') | ||
url="https://github.com/rust-lang/mdbook/releases/download/${tag}/mdbook-${tag}-x86_64-unknown-linux-gnu.tar.gz" | ||
mkdir mdbook | ||
curl -sSL $url | tar -xz --directory=./mdbook | ||
echo `pwd`/mdbook >> $GITHUB_PATH | ||
- name: Build Book | ||
run: | | ||
# This assumes your book is in the root of your repository. | ||
# Just add a `cd` here if you need to change to another directory. | ||
cd docs | ||
mdbook build | ||
- name: Setup Pages | ||
uses: actions/configure-pages@v2 | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v1 | ||
with: | ||
# Upload entire repository | ||
path: 'book' | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[book] | ||
authors = ["Haobo Gu"] | ||
language = "en" | ||
multilingual = false | ||
src = "src" | ||
title = "RMK Documentation" | ||
|
||
[build] | ||
build-dir = "book" # the directory where the output is placed | ||
create-missing = true # whether or not to create missing pages | ||
use-default-preprocessors = true # use the default preprocessors | ||
extra-watch-dirs = [] # directories to watch for triggering builds | ||
|
||
|
||
[output.html] | ||
default-theme = "light" | ||
preferred-dark-theme = "ayu" | ||
curly-quotes = false | ||
mathjax-support = false | ||
copy-fonts = true | ||
# additional-css = ["custom.css", "custom2.css"] | ||
# additional-js = ["custom.js"] | ||
no-section-label = false | ||
git-repository-url = "https://github.com/HaoboGu/rmk" | ||
git-repository-icon = "fa-github" | ||
edit-url-template = "https://github.com/HaoboGu/rmk/docs/{path}" | ||
# site-url = "/example-book/" # TODO: deploy! | ||
# input-404 = "404.md" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
# RMK | ||
|
||
[![Crates.io](https://img.shields.io/crates/v/rmk)](https://crates.io/crates/rmk) | ||
[![Docs](https://img.shields.io/docsrs/rmk)](https://docs.rs/rmk/latest/rmk/) | ||
[![Build](https://github.com/haobogu/rmk/actions/workflows/build.yml/badge.svg)](https://github.com/HaoboGu/rmk/actions) | ||
|
||
Keyboard firmware with layer/dynamic keymap/[vial](https://get.vial.today) support, written in Rust. | ||
|
||
<div class="warning"> | ||
RMK is under active development, breaking changes may happen. If you have any problem please check the latest doc or file an issue. | ||
</div> | ||
|
||
## News | ||
|
||
- [2024.01.26] 🎉[rmk-template](https://github.com/HaoboGu/rmk-template) is released! Now you can create your own keyboard firmware with a single command: `cargo generate --git https://github.com/HaoboGu/rmk-template` | ||
|
||
- [2024.01.18] RMK just released version `0.1.0`! By migrating to [Embassy](https://github.com/embassy-rs/embassy), RMK now has better async support, more supported MCUs and much easier usages than before. For examples using Embassy, check [`boards`](https://github.com/HaoboGu/rmk/tree/main/boards) folder! | ||
|
||
## Prerequisites | ||
|
||
This crate requires stable Rust 1.75 and up. `openocd`(stm32) or `probe-rs`(stm32/rp2040) is used for flashing & debugging. | ||
|
||
## Usage | ||
|
||
### Option 1: Initialize from template | ||
You can use [rmk-template](https://github.com/HaoboGu/rmk-template) to initialize your project. | ||
|
||
``` | ||
cargo install cargo-generate | ||
cargo generate --git https://github.com/HaoboGu/rmk-template | ||
``` | ||
|
||
### Option 2: Try built-in examples | ||
|
||
Example can be found at [`boards`](https://github.com/HaoboGu/rmk/blob/main/boards). The following is a simple | ||
step-to-step instruction for rp2040 and stm32h7 | ||
|
||
#### rp2040 | ||
|
||
1. Install [probe-rs](https://github.com/probe-rs/probe-rs) | ||
|
||
```shell | ||
cargo install probe-rs --features cli | ||
``` | ||
|
||
2. Build the firmware | ||
|
||
```shell | ||
cd boards/rp2040 | ||
cargo build | ||
``` | ||
|
||
3. Flash it | ||
|
||
```shell | ||
cd boards/rp2040 | ||
cargo run | ||
``` | ||
|
||
#### stm32h7 | ||
|
||
1. Install [openocd](https://github.com/openocd-org/openocd) | ||
|
||
2. Build the firmware | ||
|
||
```shell | ||
cd boards/stm32h7 | ||
cargo build | ||
``` | ||
|
||
3. Flash | ||
|
||
You can use both `probe-rs` and `openocd` to flash the firmware: | ||
|
||
```shell | ||
# Use openocd | ||
openocd -f openocd.cfg -c "program target/thumbv7em-none-eabihf/debug/rmk-stm32h7 preverify verify reset exit" | ||
|
||
# Use probe-rs | ||
cd boards/stm32h7 | ||
cargo run | ||
``` | ||
|
||
4. (Optional) Debug firmware using CMSIS-DAP | ||
|
||
Open the project using VSCode, choose `Cortex-Debug - stm32h7` debug profile, then press `F5`, the firmware will be automatically compiled and flashed. A debug session is started after flashing. | ||
Check [`.vscode/tasks.json`](https://github.com/HaoboGu/rmk/blob/main/.vscode/tasks.json) and [`.vscode/launch.json`](https://github.com/HaoboGu/rmk/blob/main/.vscode/launch.json) for details. | ||
|
||
## Roadmap | ||
|
||
A lot of todos at the list, any contributions are welcomed :) | ||
|
||
- [x] layer support | ||
- [x] system/media keys | ||
- [x] mouse keys | ||
- [x] vial support | ||
- [x] eeprom | ||
- [x] project template | ||
- [ ] easy keyboard configuration with good default | ||
- [ ] LED | ||
- [ ] RGB | ||
- [ ] better documentation | ||
- [ ] keyboard macro | ||
- [ ] encoder | ||
- [ ] wireless | ||
- [ ] default bootloader/DFU | ||
- [ ] a good gui configurator | ||
|
||
## License | ||
|
||
RMK is licensed under either of | ||
|
||
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) | ||
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT) | ||
|
||
at your option. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Summary | ||
|
||
[Introduction](README.md) | ||
|
||
--- | ||
|
||
# User Guide | ||
|
||
- [Setup Rust environment]() | ||
- [Create RMK project]() | ||
- [Choose your microcontroller]() | ||
- [Compile and flash!]() | ||
|
||
# Features | ||
- [Keymap configuration]() | ||
- [Layers]() | ||
- [Vial support]() | ||
- [Tap hold]() | ||
|
||
# Development | ||
- [For Developers]() | ||
|
||
# Roadmap | ||
- [Roadmap]() |