- New `va108xx-embassy` crate. - Embassy library uses new crate - Updated all dependencies va108xx-hal - Refactored and simplified PWM driver - Added new raw getter API for TIM peripheral blocks
26 lines
433 B
TOML
26 lines
433 B
TOML
[package]
|
|
name = "bootloader"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
cortex-m = "0.7"
|
|
cortex-m-rt = "0.7"
|
|
embedded-hal = "1"
|
|
panic-rtt-target = "0.2"
|
|
panic-halt = "1"
|
|
rtt-target = "0.6"
|
|
crc = "3"
|
|
num_enum = { version = "0.7", default-features = false }
|
|
static_assertions = "1"
|
|
|
|
[dependencies.va108xx-hal]
|
|
path = "../va108xx-hal"
|
|
|
|
[dependencies.vorago-reb1]
|
|
path = "../vorago-reb1"
|
|
|
|
[features]
|
|
default = []
|
|
rtt-panic = []
|