blob: f813f8ba55c0aab193da6ef618441f6edec1aa17 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
# Change Log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
## [v0.3.5] - 2019-08-29
### Added
- Adds a feature to work around JLink quirks
- Adds a dbg! macro using heprintln
- Added thumbv8m.main support on stable
### Fixed
- Now Rust 2018 edition
## [v0.3.4] - 2019-08-13
### Fixed
- Support for thumbv8 mainline hf target
## [v0.3.3] - 2019-04-22
### Added
- Adds support for thumbv8 and cortex-m v0.6.0
## [v0.3.2] - 2018-11-04
### Added
- Added a family of `hprint` macros for printing to the host standard output /
error via globally shared `HStdout` / `HStderr` handles .
## [v0.3.1] - 2018-08-27
### Changed
- This crate no longer depends on `arm-none-eabi-gcc`.
## [v0.3.0] - 2018-05-10
### Changed
- [breaking-change] `inline-asm` is no longer a default feature (i.e. a feature that's enabled by
default). The consequence is that this crate now compiles on 1.27 (beta) by default, and opting
into `inline-asm` requires nightly.
## [v0.2.1] - 2018-04-25
### Added
- An opt-out "inline-asm" Cargo feature. When this feature is disabled semihosting is implemented
using an external assembly file instead of using the unstable inline assembly (`asm!`) feature
meaning that this crate can be compiled on stable.
## [v0.2.0] - 2017-07-07
### Added
- `exit` and `report_exception` syscalls
- `HStdout` and `HStderr` structs that represent handles to the host stdout and
stderr stream respectively.
### Changed
- [breaking-change] The `io` module has been renamed to `hio` to reflect that
this is I/O *on the host*.
### Removed
- [breaking-change] the family of `write` functions in the `io` module. Instead
use `HStdout` / `HStderr` and its `write_all` method and `fmt::Write`
implementation.
- [breaking-change] the `hprint!` family of macros. Instead use `HStdout` and
the standard `write!` macro.
## [v0.1.3] - 2017-02-27
### Added
- A family of `ewrite` functions and `ehprint!` macros to write to the host's
stderr.
### Fixed
- `write_all` logic when a single write doesn't write all the buffer bytes
## [v0.1.2] - 2017-02-15
### Fixed
- the `hprintln!` macro when called without arguments.
## [v0.1.1] - 2017-01-22
### Added
- Expose a family of `write` functions to write to the host's stdout without
going through the `hprint!` macros.
## v0.1.0 - 2017-01-22
- Initial release
[Unreleased]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.5...HEAD
[v0.3.5]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.4...v0.3.5
[v0.3.4]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.3...v0.3.4
[v0.3.3]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.2...v0.3.3
[v0.3.2]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.1...v0.3.2
[v0.3.1]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.3.0...v0.3.1
[v0.3.0]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.2.1...v0.3.0
[v0.2.1]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.2.0...v0.2.1
[v0.2.0]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.1.3...v0.2.0
[v0.1.3]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.1.2...v0.1.3
[v0.1.2]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.1.1...v0.1.2
[v0.1.1]: https://github.com/rust-embedded/cortex-m-semihosting/compare/v0.1.0...v0.1.1
|