[package] name = "satrs-example-stm32f3-disco" version = "0.1.0" edition = "2021" default-run = "satrs-example-stm32f3-disco" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] cortex-m = { version = "0.7", features = ["critical-section-single-core"] } cortex-m-rt = "0.7" defmt = "0.3" defmt-brtt = { version = "0.1", default-features = false, features = ["rtt"] } panic-probe = { version = "0.3", features = ["print-defmt"] } embedded-hal = "0.2.7" cortex-m-semihosting = "0.5.0" enumset = "1" heapless = "0.8" [dependencies.rtic] version = "2" features = ["thumbv7-backend"] [dependencies.rtic-monotonics] version = "1" features = ["cortex-m-systick"] [dependencies.cobs] git = "https://github.com/robamu/cobs.rs.git" branch = "all_features" default-features = false [dependencies.stm32f3xx-hal] git = "https://github.com/robamu/stm32f3xx-hal" version = "0.11.0-alpha.0" features = ["stm32f303xc", "rt", "enumset"] branch = "complete-dma-update" # Can be used in workspace to develop and update HAL # path = "../stm32f3xx-hal" [dependencies.stm32f3-discovery] git = "https://github.com/robamu/stm32f3-discovery" version = "0.8.0-alpha.0" branch = "complete-dma-update-hal" # Can be used in workspace to develop and update BSP # path = "../stm32f3-discovery" [dependencies.satrs] path = "../satrs" default-features = false features = ["defmt"] [dev-dependencies] defmt-test = "0.3" # cargo test [profile.test] codegen-units = 1 debug = 2 debug-assertions = true # <- incremental = false opt-level = "s" # <- overflow-checks = true # <- # cargo build/run --release [profile.release] codegen-units = 1 debug = 2 debug-assertions = false # <- incremental = false lto = 'fat' opt-level = "s" # <- overflow-checks = false # <- # cargo test --release [profile.bench] codegen-units = 1 debug = 2 debug-assertions = false # <- incremental = false lto = 'fat' opt-level = "s" # <- overflow-checks = false # <-