Skip to content

Commit 819f8be

Browse files
authored
Merge branch 'master' into patch-1
2 parents 255faf7 + 08452a9 commit 819f8be

39 files changed

+854
-114
lines changed

.github/bors.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ delete_merged_branches = true
33
required_approvals = 1
44
status = [
55
"ci-linux (stable)",
6-
"ci-linux (1.38.0)",
6+
"ci-linux (1.40.0)",
77
"rustfmt",
88
"clippy",
99
]

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
include:
1818
# Test MSRV
19-
- rust: 1.38.0
19+
- rust: 1.40.0
2020

2121
# Test nightly but don't fail
2222
- rust: nightly

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1414
- LSU counter
1515
- Folded-instruction counter
1616
- Added `DWT.set_cycle_count` (#347).
17+
- Added support for the Cortex-M7 TCM and cache access control registers.
18+
There is a feature `cm7` to enable access to these.
19+
- Added `delay::Delay::with_source`, a constructor that lets you specify
20+
the SysTick clock source (#374).
1721

1822
### Deprecated
1923

Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,17 @@ volatile-register = "0.2.0"
2121
bitfield = "0.13.2"
2222
embedded-hal = "0.2.4"
2323

24+
[dependencies.serde]
25+
version = "1"
26+
features = [ "derive" ]
27+
optional = true
28+
2429
[features]
25-
cm7-r0p1 = []
30+
cm7 = []
31+
cm7-r0p1 = ["cm7"]
2632
inline-asm = []
2733
linker-plugin-lto = []
34+
std-map = []
2835

2936
[workspace]
3037
members = ["xtask", "cortex-m-semihosting", "panic-semihosting", "panic-itm"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This project is developed and maintained by the [Cortex-M team][team].
1111

1212
## Minimum Supported Rust Version (MSRV)
1313

14-
This crate is guaranteed to compile on stable Rust 1.38 and up. It might compile with older versions but that may change in any new patch release.
14+
This crate is guaranteed to compile on stable Rust 1.40 and up. It might compile with older versions but that may change in any new patch release.
1515

1616
## License
1717

asm-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2020-08-26
1+
nightly-2021-12-16

0 commit comments

Comments
 (0)