19 lines
484 B
TOML
Executable file
19 lines
484 B
TOML
Executable file
[package]
|
|
name = "nucleo-l053r8-blink"
|
|
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"
|
|
panic-halt = "1.0.0"
|
|
hd44780-driver = "0.4.0"
|
|
heapless = "0.8.0"
|
|
defmt = "1.0.1"
|
|
defmt-rtt = "1.0.0"
|
|
panic-probe = { version = "0.3", features = ["print-defmt"] }
|