55 lines
2.4 KiB
TOML
55 lines
2.4 KiB
TOML
[package]
|
|
name = "stm32wl-subghz"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
repository = "https://git.lusia.moe/lukrecja/stm32wl-subghz"
|
|
categories = [ "no-std", "embedded", "asynchronous" ]
|
|
keywords = [ "stm32wl", "stm32wle5jc", "lora", "fsk", "gfsk", "msk", "gmsk", "bpsk", "radio", "embedded-hal-async" ]
|
|
description = "Sub-GHz radio driver for STM32WL-series microcontrollers"
|
|
|
|
[workspace]
|
|
members = ["examples/stm32wle5jc"]
|
|
|
|
[features]
|
|
# Default chip for development/CI. Downstream users should use default-features = false
|
|
# and enable their specific chip feature.
|
|
default = ["stm32wle5jc"]
|
|
# Hardware abstraction layer, which enables embedded radio driver and all hardware deps
|
|
# When it's disabled, some parts of the code, such as BPSK frame decoding, can be used
|
|
hal = ["dep:embassy-stm32", "dep:embassy-time", "dep:defmt", "dep:cortex-m", "dep:embedded-hal", "dep:embedded-hal-async"]
|
|
# Single-core variants
|
|
stm32wle4c8 = ["hal", "embassy-stm32/stm32wle4c8"]
|
|
stm32wle4cb = ["hal", "embassy-stm32/stm32wle4cb"]
|
|
stm32wle4cc = ["hal", "embassy-stm32/stm32wle4cc"]
|
|
stm32wle4j8 = ["hal", "embassy-stm32/stm32wle4j8"]
|
|
stm32wle4jb = ["hal", "embassy-stm32/stm32wle4jb"]
|
|
stm32wle4jc = ["hal", "embassy-stm32/stm32wle4jc"]
|
|
stm32wle5c8 = ["hal", "embassy-stm32/stm32wle5c8"]
|
|
stm32wle5cb = ["hal", "embassy-stm32/stm32wle5cb"]
|
|
stm32wle5cc = ["hal", "embassy-stm32/stm32wle5cc"]
|
|
stm32wle5j8 = ["hal", "embassy-stm32/stm32wle5j8"]
|
|
stm32wle5jb = ["hal", "embassy-stm32/stm32wle5jb"]
|
|
stm32wle5jc = ["hal", "embassy-stm32/stm32wle5jc"]
|
|
# Dual-core variants
|
|
stm32wl54cc-cm0p = ["hal", "embassy-stm32/stm32wl54cc-cm0p"]
|
|
stm32wl54cc-cm4 = ["hal", "embassy-stm32/stm32wl54cc-cm4"]
|
|
stm32wl54jc-cm0p = ["hal", "embassy-stm32/stm32wl54jc-cm0p"]
|
|
stm32wl54jc-cm4 = ["hal", "embassy-stm32/stm32wl54jc-cm4"]
|
|
stm32wl55cc-cm0p = ["hal", "embassy-stm32/stm32wl55cc-cm0p"]
|
|
stm32wl55cc-cm4 = ["hal", "embassy-stm32/stm32wl55cc-cm4"]
|
|
stm32wl55jc-cm0p = ["hal", "embassy-stm32/stm32wl55jc-cm0p"]
|
|
stm32wl55jc-cm4 = ["hal", "embassy-stm32/stm32wl55jc-cm4"]
|
|
|
|
[dependencies]
|
|
embassy-stm32 = { version = "0.5.0", features = ["unstable-pac"], optional = true }
|
|
embassy-time = { version = "0.5.0", optional = true }
|
|
defmt = { version = "1.0.1", optional = true }
|
|
cortex-m = { version = "0.7.6", features = ["inline-asm"], optional = true }
|
|
embedded-hal = { version = "1.0.0", optional = true }
|
|
embedded-hal-async = { version = "1.0.0", optional = true }
|
|
|
|
[profile.release]
|
|
debug = 2
|
|
opt-level = 3
|