Skip to content

Commit

Permalink
chore(*): add feature gates for module timing for lara-r6 & toby-r2 (#81
Browse files Browse the repository at this point in the history
)

* Add feature gates for module timing for lara-r6 & toby-r2

* Bump embedded-hal to rc.1
  • Loading branch information
MathiasKoch authored and KennethKnudsen97 committed Sep 20, 2023
1 parent 16b2ad9 commit cdcca1c
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions ublox-cellular/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ doctest = false

[dependencies]
# atat = { version = "0.18", features = ["derive", "bytes"] }
atat = { git = "https://github.com/BlackbirdHQ/atat", rev = "70283be", features = ["derive", "defmt", "bytes"] }
embedded-hal = "=1.0.0-alpha.11"
atat = { git = "https://github.com/BlackbirdHQ/atat", rev = "70283be", features = [
"derive",
"defmt",
"bytes",
] }
embedded-hal = "=1.0.0-rc.1"
embedded-nal = "0.6"
fugit = { version = "0.3" }
fugit-timer = { version = "0.1.3" }
Expand All @@ -40,7 +44,13 @@ default = ["socket-udp", "socket-tcp"]
async = ["atat/async"]

# Use `defmt-impl to enable defmt based logging
defmt-impl = ["defmt", "ublox-sockets/defmt", "fugit/defmt", "atat/defmt", "heapless/defmt-impl"]
defmt-impl = [
"defmt",
"ublox-sockets/defmt",
"fugit/defmt",
"atat/defmt",
"heapless/defmt-impl",
]
# Use `log-impl` to enable log based logging
log-impl = ["log", "ublox-sockets/log", "atat/log"]

Expand Down

0 comments on commit cdcca1c

Please sign in to comment.