- Clock module to set and retrieve system clock which can have varying frequencies. Also allows enabling peripheral clocks - Prelude updated - Common time types added, based on stm32f1xx HAL implementation - Basic timer implementation added
35 lines
866 B
TOML
35 lines
866 B
TOML
[package]
|
|
name = "va108xx-hal"
|
|
version = "0.1.0"
|
|
authors = ["Robin Mueller <robin.mueller.m@gmail.com>"]
|
|
edition = "2018"
|
|
description = "HAL for the Vorago VA108xx family of microcontrollers"
|
|
homepage = "https://github.com/robamu-org/va108xx-hal-rs"
|
|
repository = "https://github.com/robamu-org/va108xx-hal-rs"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["no-std", "hal", "cortex-m", "vorago", "va108xx"]
|
|
categories = ["embedded", "no-std", "hardware-support"]
|
|
|
|
[dependencies]
|
|
cortex-m = "0.7"
|
|
cortex-m-rt = "0.7"
|
|
nb = "1"
|
|
embedded-hal = { features = ["unproven"], version = "0.2.6" }
|
|
void = { version = "1.0", default-features = false }
|
|
once_cell = { version = "1.8.0", default-features = false }
|
|
|
|
[dependencies.va108xx]
|
|
version = "0.1"
|
|
|
|
[features]
|
|
rt = ["va108xx/rt"]
|
|
|
|
[profile.dev]
|
|
debug = true
|
|
lto = false
|
|
|
|
[profile.release]
|
|
lto = true
|
|
debug = true
|
|
opt-level = "s"
|