Skip to content

Commit

Permalink
chore(rmk): make eeprom default feature
Browse files Browse the repository at this point in the history
Signed-off-by: Haobo Gu <[email protected]>
  • Loading branch information
HaoboGu committed Jan 25, 2024
1 parent 11efceb commit d62c02a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 13 deletions.
5 changes: 1 addition & 4 deletions boards/rp2040/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"

[dependencies]
rmk = { version = "0.1.2", path = "../../rmk", features = [
"eeprom",
"col2row",
] }
rmk = { version = "0.1.2", path = "../../rmk" }
embassy-time = { version = "0.3", features = ["defmt"] }
embassy-rp = { version = "0.1", features = [
"defmt",
Expand Down
5 changes: 1 addition & 4 deletions boards/stm32f4/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"

[dependencies]
rmk = { version = "0.1.2", path = "../../rmk", features = [
"eeprom",
"col2row",
] }
rmk = { version = "0.1.2", path = "../../rmk" }
cortex-m = { version = "0.7.7", features = ['critical-section-single-core'] }
cortex-m-rt = "0.7.3"
embassy-time = { version = "0.3", features = ["tick-hz-32_768", "defmt"] }
Expand Down
5 changes: 1 addition & 4 deletions boards/stm32h7/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@ edition = "2021"
license = "MIT OR Apache-2.0"

[dependencies]
rmk = { version = "0.1.2", path = "../../rmk", features = [
"eeprom",
"col2row",
] }
rmk = { version = "0.1.2", path = "../../rmk" }
cortex-m = { version = "0.7.7", features = ['critical-section-single-core'] }
cortex-m-rt = "0.7.3"
embassy-time = { version = "0.3", features = ["tick-hz-32_768", "defmt"] }
Expand Down
2 changes: 1 addition & 1 deletion rmk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ packed_struct = { version = "0.10", default-features = false }
byteorder = { version = "1.4", default-features = false }

[features]
default = ["col2row"]
default = ["eeprom", "col2row"]
col2row = []
eeprom = []

0 comments on commit d62c02a

Please sign in to comment.