Skip to content

Commit

Permalink
refactor: update default keyboard config
Browse files Browse the repository at this point in the history
Signed-off-by: Haobo Gu <[email protected]>
  • Loading branch information
HaoboGu committed Jan 19, 2024
1 parent fff5a80 commit 8ce524b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rmk/src/usb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ impl<D: Driver<'static>> KeyboardUsbDevice<'static, D> {
pub fn new(driver: D) -> Self {
// Create embassy-usb Config
let mut usb_config = embassy_usb::Config::new(0xc0de, 0xcafe);
usb_config.manufacturer = Some("rmk");
usb_config.product = Some("demo keyboard");
usb_config.manufacturer = Some("RMK");
usb_config.product = Some("Hid Keyboard");
usb_config.serial_number = Some("00000001");

// Create embassy-usb DeviceBuilder using the driver and config.
Expand Down

0 comments on commit 8ce524b

Please sign in to comment.