13 lines
268 B
TOML
Executable file
13 lines
268 B
TOML
Executable file
[package]
|
|
name = "nucleo-l053r8-blink"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
|
|
[dependencies]
|
|
cortex-m-rt = "0.7.5"
|
|
panic-halt = "1.0.0"
|
|
stm32l0xx-hal = { version = "0.10.0", features = [
|
|
"mcu-STM32L053R8Hx",
|
|
"rt",
|
|
] } # mcu-STM32L053R8Hx or mcu-STM32L053R8Tx not sure
|