26 lines
610 B
TOML
Executable file
26 lines
610 B
TOML
Executable file
[package]
|
|
name = "nucleo-l053r8-crcbench"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
|
|
[dependencies]
|
|
hal = { package = "stm32l0xx-hal", version = "0.10.0", features = [
|
|
"mcu-STM32L053R8Tx", # specifically STM32L053R8T6
|
|
"rt",
|
|
] }
|
|
cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] }
|
|
cortex-m-rt = "0.7.5"
|
|
defmt = { version = "1.0.1" }
|
|
defmt-rtt = { version = "1.0.0" }
|
|
panic-probe = { version = "0.3", features = ["print-defmt"] }
|
|
|
|
[features]
|
|
default = ["buildscript"]
|
|
buildscript = []
|
|
|
|
[profile.release]
|
|
debug = "full" # those are not on the board
|
|
|
|
[workspace]
|
|
members = ["", "crates/crc"]
|