Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
blueluna committed Dec 30, 2023
1 parent 01584e3 commit 8868878
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions adafruit-feather-nrf52840-express/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ edition = "2018"
cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7"
defmt = "0.3"
defmt-rtt = "0.3"
defmt-rtt = "0.4"
panic-probe = "0.3"

[dev-dependencies]
nrf52840-pac = "0.11"
nrf52840-hal = "0.15"
nrf52840-pac = "0.12"
nrf52840-hal = "0.16"
panic-itm = "0.4"
cortex-m-rtic = "1.1"
bbqueue = "0.5"
Expand All @@ -32,7 +32,7 @@ psila-crypto = { git = "https://github.com/blueluna/psila.git" }
psila-data = { git = "https://github.com/blueluna/psila.git", features = ["core"] }
psila-service = { git = "https://github.com/blueluna/psila.git", features = ["core", "defmt"] }

smart-leds-trait = "0.2.0"
smart-leds = "0.3.0"
smart-leds-trait = "0.2"
smart-leds = "0.3"
nrf-smartled = { git = "https://github.com/blueluna/nrf-smartled.git", branch="main", features = ["52840"] }
palette = { version = "0.5", default-features = false, features = ["libm"] }
2 changes: 1 addition & 1 deletion nrf52-cryptocell/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ edition = "2018"

[dependencies]
cty = "0.2.0"
nrf52840-pac = "0.11"
nrf52840-pac = "0.12"
psila-crypto = { git = "https://github.com/blueluna/psila.git" }
6 changes: 3 additions & 3 deletions nrf52840-dk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ edition = "2018"
cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7"
defmt = "0.3"
defmt-rtt = "0.3"
defmt-rtt = "0.4"
panic-probe = "0.3"

[dev-dependencies]
nrf52840-pac = "0.11"
nrf52840-hal = "0.15"
nrf52840-pac = "0.12"
nrf52840-hal = "0.16"
cortex-m-rtic = "1.1"
bbqueue = "0.5"
ieee802154 = { git = "https://github.com/blueluna/ieee-802.15.4.git" }
Expand Down
12 changes: 6 additions & 6 deletions nrf52840-dk/examples/nrf52840-dk-energy-detect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,28 +99,28 @@ mod app {
STATE_A::DISABLED => {
defmt::info!("DISABLED");
}
STATE_A::RXRU => {
STATE_A::RX_RU => {
defmt::info!("RXRU");
}
STATE_A::RXIDLE => {
STATE_A::RX_IDLE => {
defmt::info!("RX IDLE");
}
STATE_A::RX => {
defmt::info!("RX");
}
STATE_A::RXDISABLE => {
STATE_A::RX_DISABLE => {
defmt::info!("RX DISABLE");
}
STATE_A::TXRU => {
STATE_A::TX_RU => {
defmt::info!("TXRU");
}
STATE_A::TXIDLE => {
STATE_A::TX_IDLE => {
defmt::info!("TX IDLE");
}
STATE_A::TX => {
defmt::info!("TX");
}
STATE_A::TXDISABLE => {
STATE_A::TX_DISABLE => {
defmt::info!("TX DISABLE");
}
}
Expand Down
6 changes: 3 additions & 3 deletions nrf52840-mdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
cortex-m-rt = "0.7"
cortex-m-rtic = "1.1"
defmt = "0.3"
defmt-rtt = "0.3"
defmt-rtt = "0.4"
esercom = { git = "https://github.com/blueluna/esercom.git", branch = "master" }
ieee802154 = { git = "https://github.com/blueluna/ieee-802.15.4.git" }
nrf52-cryptocell = { path = "../nrf52-cryptocell" }
nrf52840-pac = "0.11"
nrf52840-hal = "0.15"
nrf52840-pac = "0.12"
nrf52840-hal = "0.16"
panic-probe = "0.3"
psila-crypto = { git = "https://github.com/blueluna/psila.git" }
psila-nrf52 = { git = "https://github.com/blueluna/psila-nrf52.git", features = ["52840"] }

0 comments on commit 8868878

Please sign in to comment.