Skip to content

Upstream updates #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
[package]
authors = ["David Karwowski <[email protected]>"]
description = "Peripheral access API for STM32F429X Microcontrollers."
authors = ["Astro <[email protected]>"]
description = "Peripheral access API for STM32F429 Microcontrollers."
keywords = ["no-std", "arm", "cortex-m", "stm32"]
license = "MIT"
repository = "https://github.com/dkarwowski/stm32f429x"
documentation = "https://docs.rs/stm32f429x"
name = "stm32f429x"
version = "0.3.0"
repository = "https://github.com/astro/stm32f429x"
documentation = "https://docs.rs/stm32f429"
name = "stm32f429"
version = "0.0.0"

[features]
default = []
rt = ["cortex-m-rt"]

[dependencies]
cortex-m = "0.2.4"
cortex-m = "0.4.3"
vcell = "0.1.0"
bare-metal = "0.1.1"
cortex-m-rt = { version = "0.3.12", optional = true }
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# stm32f429x
# stm32f429

Peripheral Access API built with [svd2rust](https://github.com/japaric/svd2rust).
Peripheral Access API built with the latest
[svd2rust](https://github.com/japaric/svd2rust). In contrast to the
[stm32f429x](https://github.com/dkarwowski/stm32f429x/) crate, this
one contains no custom additions but aims to follow up with the latest
`STM32F429.svd` with the current `svd2rust` tool.
Loading