Skip to content
This repository was archived by the owner on Nov 14, 2020. It is now read-only.

Commit 13510cb

Browse files
committed
v0.1.1
1 parent a8818f8 commit 13510cb

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

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+
1019
## v0.1.0 - 2018-04-09
1120

1221
Initial release
1322

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

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
//! Log panic messages using the ITM (Instrumentation Trace Macrocell)
22
//!
33
//! 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.
56
//!
67
//! # Usage
78
//!

0 commit comments

Comments
 (0)