Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lthiery committed Feb 25, 2022
1 parent eb473d1 commit 6932205
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "virtual-lorawan-device"
version = "0.2.11"
version = "0.2.12-alpha.0"
authors = ["lthiery <[email protected]>"]
edition = "2021"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion src/virtual_device/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ impl VirtualDevice {
settings::Region::EU868 => region::EU868::default().into(),
};

let mut device: Device<udp_radio::UdpRadio, LorawanCrypto, 512> = Device::new(
let device: Device<udp_radio::UdpRadio, LorawanCrypto, 512> = Device::new(
region,
JoinMode::OTAA {
deveui: credentials.deveui_cloned_into_buf()?,
Expand Down

0 comments on commit 6932205

Please sign in to comment.