pounder_test/Cargo.toml

99 lines
2.5 KiB
TOML
Raw Normal View History

[package]
name = "stabilizer"
version = "0.5.0"
2021-07-15 20:07:30 +08:00
resolver = "2"
authors = ["Robert Jördens <rj@quartiq.de>"]
description = "Firmware for the Sinara Stabilizer board (stm32h743, eth, poe, 2 adc, 2 dac)"
categories = ["embedded", "no-std", "hardware-support", "science"]
license = "MIT OR Aapache-2.0"
keywords = ["ethernet", "stm32h7", "adc", "dac", "physics"]
repository = "https://github.com/quartiq/stabilizer"
readme = "README.md"
documentation = "https://docs.rs/stabilizer/"
edition = "2018"
exclude = [
".travis.yml",
".gitignore",
"doc/",
"doc/*"
2020-06-08 15:36:28 +08:00
]
[badges]
maintenance = { status = "experimental" }
[package.metadata.docs.rs]
features = []
default-target = "thumbv7em-none-eabihf"
2020-12-11 22:19:13 +08:00
[workspace]
members = ["ad9959", "dsp"]
[dependencies]
cortex-m = { version = "0.7" }
cortex-m-rt = { version = "0.6", features = ["device"] }
2021-05-13 01:02:15 +08:00
log = { version = "0.4", features = ["max_level_trace", "release_max_level_info"] }
rtt-target = { version = "0.3", features = ["cortex-m"] }
serde = { version = "1.0", features = ["derive"], default-features = false }
heapless = { version = "0.7", features = ["serde"] }
cortex-m-rtic = "0.5.7"
embedded-hal = "0.2.5"
nb = "1.0.0"
asm-delay = "0.9.0"
num_enum = { version = "0.5.3", default-features = false }
paste = "1"
dsp = { path = "dsp" }
ad9959 = { path = "ad9959" }
2021-04-29 03:03:38 +08:00
miniconf = "0.1.0"
2021-05-05 20:42:17 +08:00
shared-bus = {version = "0.2.2", features = ["cortex-m"] }
serde-json-core = "0.4"
2021-05-26 04:59:32 +08:00
mcp23017 = "1.0"
mutex-trait = "0.2"
minimq = "0.3"
# rtt-target bump
[dependencies.rtt-logger]
git = "https://github.com/quartiq/rtt-logger.git"
rev = "70b0eb5"
2021-06-15 19:56:17 +08:00
# The following modifications of the HAL are being used:
# * fast double buffered DMA without poisoning and buffer swapping
# * Utilize `master` branch of smoltcp
# * Utilize `master` branch of HAL
[dependencies.stm32h7xx-hal]
features = ["stm32h743v", "rt", "unproven", "ethernet", "quadspi"]
# version = "0.9.0"
git = "https://github.com/quartiq/stm32h7xx-hal.git"
2021-06-15 18:54:57 +08:00
rev = "33aa67d"
2021-01-27 02:14:23 +08:00
# link.x section start/end
[patch.crates-io.cortex-m-rt]
2021-04-29 22:39:01 +08:00
git = "https://github.com/rust-embedded/cortex-m-rt.git"
rev = "a2e3ad5"
2021-07-22 20:45:58 +08:00
[patch.crates-io.heapless]
git = "https://github.com/quartiq/heapless.git"
branch = "feature/assume-init"
2021-02-18 01:40:03 +08:00
[patch.crates-io.miniconf]
2021-04-29 03:03:38 +08:00
git = "https://github.com/quartiq/miniconf.git"
2021-08-09 20:01:11 +08:00
rev = "6c19ba2"
2021-03-02 23:43:19 +08:00
[dependencies.smoltcp-nal]
2021-03-05 00:26:10 +08:00
git = "https://github.com/quartiq/smoltcp-nal.git"
rev = "0634188"
2021-02-19 17:36:39 +08:00
[features]
2020-11-26 21:19:09 +08:00
nightly = ["cortex-m/inline-asm", "dsp/nightly"]
2021-01-06 20:29:19 +08:00
pounder_v1_1 = [ ]
[profile.dev]
codegen-units = 1
incremental = false
2021-06-09 21:30:33 +08:00
opt-level = 3
[profile.release]
opt-level = 3
debug = true
lto = true
codegen-units = 1