This repository was archived by the owner on Nov 14, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.1.1] - 2018-05-11
11
+
12
+ ### Changed
13
+
14
+ - Specify the full behavior of the panic handler in the documentation.
15
+
16
+ - Remove the unspecified behavior of aborting after printing the message. This lets us drop the
17
+ ` core_intrinsics ` feature gate.
18
+
10
19
## v0.1.0 - 2018-04-09
11
20
12
21
Initial release
13
22
14
- [ Unreleased ] : https://github.com/japaric/panic-itm/compare/v0.1.0...HEAD
23
+ [ Unreleased ] : https://github.com/japaric/panic-itm/compare/v0.1.1...HEAD
24
+ [ v0.1.1 ] : https://github.com/japaric/panic-itm/compare/v0.1.0...v0.1.1
Original file line number Diff line number Diff line change 1
1
//! Log panic messages using the ITM (Instrumentation Trace Macrocell)
2
2
//!
3
3
//! This crate contains an implementation of `panic_fmt` that logs panic messages to the ITM
4
- //! stimulus port 0.
4
+ //! stimulus port 0. Before printing the message the panic handler disables (masks) all the device
5
+ //! specific interrupts. After printing the message the panic handler goes into an infinite loop.
5
6
//!
6
7
//! # Usage
7
8
//!
You can’t perform that action at this time.
0 commit comments