aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jorge Aparicio <jorge@japaric.io> 2018-10-27 13:54:16 +0200
committerGravatar Jorge Aparicio <jorge@japaric.io> 2018-10-27 13:54:16 +0200
commit1ad665acb3c5b7bce2a95b9d0e563018d258adef (patch)
tree541bdf33e4892a57b2044741377541daf4fa58e8
parented7a8c8ea529ebc3ea7859c7e0f91871bb2772c2 (diff)
downloadcortex-m-1ad665acb3c5b7bce2a95b9d0e563018d258adef.tar.gz
cortex-m-1ad665acb3c5b7bce2a95b9d0e563018d258adef.tar.zst
cortex-m-1ad665acb3c5b7bce2a95b9d0e563018d258adef.zip
incorporate #120 into the CHANGELOG
-rw-r--r--CHANGELOG.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c23d3bf..8ca28e4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -20,6 +20,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- `SCB` gained methods to set and get the priority of system handlers like
SVCall and SysTick.
+- `NVIC` gained *static* methods, `pend` and `unpend`, to set and clear the
+ pending state of interrupts.
+
+### Changed
+
+- The `NVIC.{clear,set}_pending` methods have been deprecated in favor of
+ `NVIC::{,un}pend`.
+
## [v0.5.7] - 2018-09-06
### Added