Skip to content

Commit

Permalink
Air75 Read Support Confirmed (#6)
Browse files Browse the repository at this point in the history
* Confirmed following functionality with Air75:
  * Reading bootloader, hash matches other NuPhy products
  * Reading full-flash
* Added Air75 part (another Air60 reference)
* Added minimum Rust version (let-else not stabilized before Rust 1.65 w/ PR rust-lang/rust#93628)
  • Loading branch information
donn authored Aug 8, 2023
1 parent 94ac0b6 commit eb86331
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
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

0 comments on commit eb86331

Please sign in to comment.