@@ -8,6 +8,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8
8
9
9
## [ unreleased]
10
10
11
+ ## [ v0.11.0] 2025-03-07
12
+
13
+ ## Changed
14
+
15
+ - Bugfix for I2C ` TimingCfg::reg `
16
+ - Simplified UART error handling. All APIs are now infallible because writing to a FIFO or
17
+ reading from a FIFO never fails. Users can either poll errors using ` Rx::poll_errors ` or
18
+ ` Uart::poll_rx_errors ` / ` UartBase::poll_rx_errors ` , or detect errors using the provided
19
+ interrupt handlers.
20
+
11
21
## [ v0.10.0] 2025-02-17
12
22
13
23
## Added
@@ -104,14 +114,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
104
114
- Updated ` embedded-hal ` to v1
105
115
- Added optional ` defmt ` v0.3 feature and support.
106
116
107
- ## [ v0.5.2] 2024-06-16
117
+ ## v0.5.2 2024-06-16
108
118
109
119
## Fixed
110
120
111
121
- Replaced usage to ` ptr::write_volatile ` in UART module which is denied on more recent Rust
112
122
compilers.
113
123
114
- ## [ v0.5.1]
124
+ ## v0.5.1
115
125
116
126
### Changes
117
127
@@ -120,7 +130,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
120
130
- ` once_cell ` to 1.12.0
121
131
- Other dependencies: Only revision has changed
122
132
123
- ## [ v0.5.0]
133
+ ## v0.5.0
124
134
125
135
### Added
126
136
@@ -133,14 +143,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
133
143
134
144
- Bugfix in UART code where RX and TX could not be enabled or disabled independently
135
145
136
- ## [ v0.4.3]
146
+ ## v0.4.3
137
147
138
148
- Various smaller fixes for READMEs, update of links in documentation
139
149
- Simplified CI for github, do not use ` cross `
140
150
- New ` blinky-pac ` example
141
151
- Use HAL delay in ` blinky ` example
142
152
143
- ## [ v0.4.2]
153
+ ## v0.4.2
144
154
145
155
### Added
146
156
@@ -150,24 +160,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
150
160
151
161
- Clear TX and RX FIFO in SPI transfer function
152
162
153
- ## [ v0.4.1]
163
+ ## v0.4.1
154
164
155
165
### Fixed
156
166
157
167
- Initial blockmode setting was not set in SPI constructor
158
168
159
- ## [ v0.4.0]
169
+ ## v0.4.0
160
170
161
171
### Changed
162
172
163
173
- Replaced ` Hertz ` by ` impl Into<Hertz> ` completely and removed
164
174
` + Copy ` where not necessary
165
175
166
- ## [ v0.3.1]
176
+ ## v0.3.1
167
177
168
178
- Updated all links to point to new repository
169
179
170
- ## [ v0.3.0]
180
+ ## v0.3.0
171
181
172
182
### Added
173
183
@@ -179,7 +189,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
179
189
- Primary repository now hosted on IRS external git: https://egit.irs.uni-stuttgart.de/rust/va108xx-hal
180
190
- Relicensed as Apache-2.0
181
191
182
- ## [ 0 .2.3]
192
+ ## v0 .2.3
183
193
184
194
### Added
185
195
@@ -191,7 +201,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
191
201
192
202
- Improved Timer API. It is now possible to simply use ` new ` on ` CountDownTimer `
193
203
194
- ## [ 0 .2.2]
204
+ ## v0 .2.2
195
205
196
206
### Added
197
207
@@ -203,7 +213,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
203
213
204
214
- API which expects values in Hertz now uses ` impl Into<Hertz> ` as input parameter
205
215
206
- ## [ 0 .2.1]
216
+ ## v0 .2.1
207
217
208
218
### Added
209
219
@@ -217,7 +227,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
217
227
- Moved the ` FilterClkSel ` struct to the ` clock ` module, re-exporting in ` gpio `
218
228
- Clearing output state at initialization of Output pins
219
229
220
- ## [ 0 .2.0]
230
+ ## v0 .2.0
221
231
222
232
### Changed
223
233
@@ -232,7 +242,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
232
242
- Some bugfixes for GPIO implementation
233
243
- Rust edition updated to 2021
234
244
235
- ## [ 0 .1.0]
245
+ ## v0 .1.0
236
246
237
247
### Added
238
248
@@ -241,3 +251,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
241
251
- RTT example application
242
252
- Added basic test binary in form of an example
243
253
- README with basic instructions how to set up own binary crate
254
+
255
+ [ unreleased ] : https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/va108xx-hal-v0.11.0...HEAD
256
+ [ v0.11.0 ] : https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/va108xx-hal-v0.10.0...va108xx-hal-v0.11.0
257
+ [ v0.10.0 ] : https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/va108xx-hal-v0.9.0...va108xx-hal-v0.10.0
258
+ [ v0.9.0 ] : https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/va108xx-hal-v0.8.0...va108xx-hal-v0.9.0
259
+ [ v0.8.0 ] : https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/va108xx-hal-v0.7.0...va108xx-hal-v0.8.0
260
+ [ v0.7.0 ] : https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/compare/va108xx-hal-v0.6.0...va108xx-hal-v0.7.0
261
+ [ v0.6.0 ] : https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/tag/va108xx-hal-v0.6.0
0 commit comments