diff options
author | 2020-09-22 00:40:38 +0100 | |
---|---|---|
committer | 2020-09-22 00:52:13 +0100 | |
commit | b7541ddb57b268ebec9591730898c97bd98d36d6 (patch) | |
tree | 1bdb110a4d9d2192c8b546c23d7e10dadb27b4b5 | |
parent | 67ee1ce6c485262ca2ea4d551d5cef2fc69fdd23 (diff) | |
download | cortex-m-b7541ddb57b268ebec9591730898c97bd98d36d6.tar.gz cortex-m-b7541ddb57b268ebec9591730898c97bd98d36d6.tar.zst cortex-m-b7541ddb57b268ebec9591730898c97bd98d36d6.zip |
Update CHANGELOG for InterruptNumber impl for Nr
-rw-r--r-- | CHANGELOG.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d7cae7a..198cecc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - New `InterruptNumber` trait is now required on interrupt arguments to the various NVIC functions, replacing the previous use of `Nr` from bare-metal. + For backwards compatibility, `InterruptNumber` is implemented for types + which are `Nr + Copy`, but this will be removed in a future version. - Associated const `PTR` is introduced to Core Peripherals to eventually replace the existing `ptr()` API. - A delay driver based on SysTick. |