Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ repository = "https://github.com/carlossless/sinowealth-kb-tool"
version = "0.0.3"
edition = "2021"
license = "MIT"
rust-version = "1.65"

[dependencies]
clap = "4.1"
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@ This is an experimental tool, so use it at your own risk.
| Keyboard | ISP MD5 | MCU | Supported |
| -------- | ------- | --- | --------- |
| [NuPhy Air60](https://nuphy.com/products/air60) | 3e0ebd0c440af5236d7ff8872343f85d | SH68F90A (labeled as BYK916) | ✅ |
| [NuPhy Air75](https://nuphy.com/products/air75) | 3e0ebd0c440af5236d7ff8872343f85d | SH68F90A (labeled as BYK916) | ✅‡ |
| [NuPhy Halo65](https://nuphy.com/products/halo65) | 3e0ebd0c440af5236d7ff8872343f85d | ❓ | ✅ |
| Hykker X Range 2017 (RE-K70-BYK800) | 13df4ce2933f9654ffef80d6a3c27199 | SH68F881 (labeled as BYK801) | ✅ |
| Xinmeng K916 | cfc8661da8c9d7e351b36c0a763426aa | SH68F90 | ✅ |

‡ Reading tested, writing untested.

## Prerequisites

### Linux
Expand Down
1 change: 1 addition & 0 deletions src/part.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ pub const PART_RE_K70_BYK800: Part = Part {
pub static PARTS: phf::Map<&'static str, Part> = phf_map! {
"nuphy-air60" => PART_NUPHY_AIR60,
"nuphy-halo65" => PART_NUPHY_AIR60, // same as nuphy-air60
"nuphy-air75" => PART_NUPHY_AIR60, // same as nuphy-air60
"xinmeng-k916" => PART_XINMENG_K916,
"re-k70-byk800" => PART_RE_K70_BYK800,
};
Expand Down