Skip to content

Commit

Permalink
Use correct product ID 42b2 and release v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
robin-nitrokey committed Oct 13, 2021
1 parent 5444e85 commit 695167e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions 70-nitrokey-3.rules
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Nitrokey 3 firmware
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="20a0", ATTRS{idProduct}=="42b3", TAG+="uaccess"
SUBSYSTEM=="tty", ATTRS{idVendor}=="20a0", ATTRS{idProduct}=="42b3", TAG+="uaccess"
SUBSYSTEM=="usb", ATTRS{idVendor}=="20a0", ATTRS{idProduct}=="42b3", TAG+="uaccess"
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="20a0", ATTRS{idProduct}=="42b2", TAG+="uaccess"
SUBSYSTEM=="tty", ATTRS{idVendor}=="20a0", ATTRS{idProduct}=="42b2", TAG+="uaccess"
SUBSYSTEM=="usb", ATTRS{idVendor}=="20a0", ATTRS{idProduct}=="42b2", TAG+="uaccess"

# Nitrokey 3 bootloader
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="20a0", ATTRS{idProduct}=="42dd", TAG+="uaccess"
2 changes: 1 addition & 1 deletion Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -1095,7 +1095,7 @@
<string>0x2007</string>
<string>0x0001</string>
<string>0xBEEE</string>
<string>0x42b3</string>
<string>0x42B2</string>
</array>

<key>ifdFriendlyName</key>
Expand Down
2 changes: 1 addition & 1 deletion runners/lpc55/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion runners/lpc55/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "runner"
version = "0.2.0"
version = "0.2.1"
authors = ["Nicolas Stalder <[email protected]>", "Conor Patrick <[email protected]>"]
edition = "2018"
resolver = "2"
Expand Down
2 changes: 1 addition & 1 deletion runners/lpc55/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ pub fn init_board(
usb_config: Some(initializer::UsbConfig {
manufacturer_name: "Nitrokey",
product_name: initializer::UsbProductName::UsePfr,
vid_pid: UsbVidPid(0x20a0, 0x42b3),
vid_pid: UsbVidPid(0x20a0, 0x42b2),
})
};

Expand Down

0 comments on commit 695167e

Please sign in to comment.