Skip to content
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

Release lpc845-pac version 0.3.0 #45

Merged
merged 4 commits into from
Nov 6, 2019
Merged
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
10 changes: 10 additions & 0 deletions lpc845/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="v0.3.0"></a>
## v0.3.0 (2019-11-06)

- Fix register value name in WKT.CTRL ([#43])
- Fix access to STAT register in USART peripheral ([#44])

[#43]: https://github.com/lpc-rs/lpc-pac/pull/43
[#44]: https://github.com/lpc-rs/lpc-pac/pull/44


<a name="v0.2.0"></a>
## v0.2.0 (2019-10-11)

Expand Down
4 changes: 2 additions & 2 deletions lpc845/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "lpc845-pac"
version = "0.2.0"
authors = ["David Sawatke <d-lpc@sawatzke.dev>"]
version = "0.3.0"
authors = ["David Sawatzke <d-lpc@sawatzke.dev>"]

description = "Low-level register mappings for the NXP LPC845 series of ARM Cortex-M0+ microcontrollers"
documentation = "https://docs.rs/lpc845-pac"
Expand Down
7 changes: 0 additions & 7 deletions lpc845/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,6 @@ Another problem that we inherit from the SVD file is that some register and fiel

At this point, there is no guarantee of API stability. This means that we reserve the right to make changes to the API, that might break existing programs when they upgrade.

## Update Procedure

The repository contains an [update script], that can be used to re-generate the source code. This script updates all required tools ([svd2rust] and [rustfmt]), copies the SVD file, applies various patches to it, and then re-generates the code.

The patches that are applied to the SVD file are relatively minimal, and are just intended to fix various problems with the file that otherwise would prevent code generation, or would lead to incorrect code being generated.


## License

This project is open source software, licensed under the terms of the [Zero Clause BSD License][Zero Clause BSD License] (0BSD, for short). This basically means you can do anything with the software, without any restrictions, but you can't hold the authors liable for problems.
Expand Down