Skip to content

Commit

Permalink
chore(core): bump version
Browse files Browse the repository at this point in the history
Signed-off-by: Haobo Gu <[email protected]>
  • Loading branch information
HaoboGu committed Nov 1, 2023
1 parent 1c295b7 commit 298dec6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion 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 boards/rp2040/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ license = "MIT OR Apache-2.0"
forced-target = "thumbv6m-none-eabi"

[dependencies]
rmk = { version = "0.0.4", path = "../../rmk", features = [
rmk = { version = "0.0.5", path = "../../rmk", features = [
"eeprom",
"col2row",
] }
Expand Down
2 changes: 1 addition & 1 deletion boards/stm32h7/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ license = "MIT OR Apache-2.0"
forced-target = "thumbv7em-none-eabihf"

[dependencies]
rmk = { version = "0.0.4", path = "../../rmk", features = [
rmk = { version = "0.0.5", path = "../../rmk", features = [
"eeprom",
"col2row",
] }
Expand Down
2 changes: 1 addition & 1 deletion rmk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rmk"
version = "0.0.4"
version = "0.0.5"
authors = ["Haobo Gu <[email protected]>"]
description = "Keyboard firmware written in Rust"
homepage = "https://github.com/haobogu/rmk"
Expand Down
6 changes: 3 additions & 3 deletions rmk/src/keyboard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use core::convert::Infallible;
use embedded_alloc::Heap;
use embedded_hal::digital::v2::{InputPin, OutputPin};
use embedded_storage::nor_flash::NorFlash;
use log::debug;
use log::{debug, warn};
use rtic_monotonics::systick::*;
use usb_device::class_prelude::UsbBus;
use usbd_hid::descriptor::{KeyboardReport, MediaKeyboardReport, SystemControlReport};
Expand Down Expand Up @@ -306,11 +306,11 @@ impl<
}

async fn process_key_action_tap_hold(&mut self, _tap_action: Action, _hold_action: Action) {
todo!("tap or hold not implemented");
warn!("tap or hold not implemented");
}

async fn process_key_action_oneshot(&mut self, _oneshot_action: Action) {
todo!("oneshot action not implemented");
warn!("oneshot action not implemented");
}

// Process a single keycode, typically a basic key or a modifier key.
Expand Down

0 comments on commit 298dec6

Please sign in to comment.