@@ -7,26 +7,32 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.6.1] - 2020-12-10
11
+
12
+ ### Changed
13
+
14
+ - Removed ` doc-comment ` dependency ([ #184 ] )
15
+
10
16
## [ v0.6.0] - 2020-12-10
11
17
12
18
### Added
13
19
14
- - Support for 16-bit words with SPI ([ #107 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/107 ) )
15
- - SPI support for reclock after initialization ([ #98 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/98 ) )
16
- - Support for ` stm32f302x6 ` and ` stm32f302x8 ` devices ([ #132 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/132 ) )
17
- - Support for the onboard real-time clock (RTC) ([ #136 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/136 ) )
18
- - Enable DMA for USART on ` stm32f302 ` devices ([ #139 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/139 ) )
19
- - Basic CAN bus support ([ #100 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/100 ) )
20
+ - Support for 16-bit words with SPI ([ #107 ] )
21
+ - SPI support for reclock after initialization ([ #98 ] )
22
+ - Support for ` stm32f302x6 ` and ` stm32f302x8 ` devices ([ #132 ] )
23
+ - Support for the onboard real-time clock (RTC) ([ #136 ] )
24
+ - Enable DMA for USART on ` stm32f302 ` devices ([ #139 ] )
25
+ - Basic CAN bus support ([ #100 ] )
20
26
- Impls for all SPI pins for all ` stm32f302 ` sub-targets, ` stm32f303 `
21
27
subtargets, ` stm32f3x8 ` targets, ` stm32f334 ` , and ` stm32f373 `
22
- ([ #99 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/99 ) )
28
+ ([ #99 ] )
23
29
- SPI4 peripheral for supported
24
- devices. ([ #99 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/99 ) )
25
- - Support for I2C transfer of more than 255 bytes, and 0 byte write ([ #154 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/154 ) )
26
- - Support for HSE bypass and CSS ([ #156 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/156 ) )
27
- - Impls for missing I2C pin definitions ([ #164 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/164 ) )
28
- - Support I2C3 ([ #164 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/164 ) )
29
- - Support for [ ` defmt ` ] [ defmt ] ([ #172 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/172 ) )
30
+ devices. ([ #99 ] )
31
+ - Support for I2C transfer of more than 255 bytes, and 0 byte write ([ #154 ] )
32
+ - Support for HSE bypass and CSS ([ #156 ] )
33
+ - Impls for missing I2C pin definitions ([ #164 ] )
34
+ - Support I2C3 ([ #164 ] )
35
+ - Support for [ ` defmt ` ] [ defmt ] ([ #172 ] )
30
36
- Now [ defmt] [ ] features are available.
31
37
- Currently these are only used for panicking calls, like
32
38
` assert! ` ` panic! ` or ` unwrap() ` . These are enabled using the [ defmt] [ ]
@@ -42,48 +48,48 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
42
48
### Changed
43
49
44
50
- Introduced auto-generated GPIO mappings based on the STM32CubeMX database
45
- ([ #129 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/129 ) )
51
+ ([ #129 ] )
46
52
47
53
### Fixed
48
54
49
- - Fixed [ #151 ] [ ] not being able to generate 72 MHz HCLK for stm32f303xc devices
50
- ([ #152 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/152 ) )
51
- - Wrong I2C clock source ([ #164 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/164 ) )
55
+ - Fixed [ #151 ] not being able to generate 72 MHz HCLK for stm32f303xc devices
56
+ ([ #152 ] )
57
+ - Wrong I2C clock source ([ #164 ] )
52
58
53
59
[ #151 ] : https://github.com/stm32-rs/stm32f3xx-hal/issues/151
54
60
55
61
### Breaking Changes
56
62
57
63
- Removed impl for ` SckPin<SPI2> ` for ` PB13<AF5> ` from ` stm32f328 ` and
58
- ` stm32f378 ` targets. ([ #99 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/99 ) )
64
+ ` stm32f378 ` targets. ([ #99 ] )
59
65
- Removed SPI1 support for ` stm32f302x6 ` and ` stm32f302x8 ` sub-targets
60
- and ` stm32f318 ` target. ([ #99 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/99 ) )
66
+ and ` stm32f318 ` target. ([ #99 ] )
61
67
- This release requires 1.48, as intra-doc-links are now used internally.
62
68
Until now, no MSRV was tracked. This has changed now. This however does
63
69
not mean, that we guarantee any MSRV policy. It is rather for documentation
64
70
purposes and if a new useful feature arises, we will increase the MSRV.
65
- ([ #170 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/170 ) )
71
+ ([ #170 ] )
66
72
- Removed I2C2 support for ` stm32f303x6 ` , ` stm32f303x8 ` and ` stm32f328 ` targets.
67
- ([ #164 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/164 ) )
73
+ ([ #164 ] )
68
74
- ` I2c::i2c1 ` and ` I2c::i2c2 ` functions are renamed to ` I2c::new ` .
69
- ([ #164 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/164 ) )
75
+ ([ #164 ] )
70
76
71
77
## [ v0.5.0] - 2020-07-21
72
78
73
79
### Added
74
80
75
- - Implement ` InputPin ` for ` Output<OpenDrain> ` pins ([ #114 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/114 ) )
76
- - Support for safe one-shot DMA transfers ([ #86 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/86 ) )
77
- - DMA support for serial reception and transmission ([ #86 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/86 ) )
78
- - ADC support for ` stm32f303 ` devices ([ #47 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/47 ) )
81
+ - Implement ` InputPin ` for ` Output<OpenDrain> ` pins ([ #114 ] )
82
+ - Support for safe one-shot DMA transfers ([ #86 ] )
83
+ - DMA support for serial reception and transmission ([ #86 ] )
84
+ - ADC support for ` stm32f303 ` devices ([ #47 ] )
79
85
80
86
### Fixed
81
87
82
- - ` PLL ` was calculated wrong for devices, which do not divide ` HSI ` ([ #67 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/67 ) )
88
+ - ` PLL ` was calculated wrong for devices, which do not divide ` HSI ` ([ #67 ] )
83
89
84
90
### Changed
85
91
86
- - The system clock calculation is more fine grained now. ([ #67 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/67 ) )
92
+ - The system clock calculation is more fine grained now. ([ #67 ] )
87
93
Now the system clock can be some value, like 14 MHz, which can not a
88
94
be represented as a multiple of the oscillator clock:
89
95
@@ -106,115 +112,115 @@ let clocks = rcc
106
112
107
113
### Breaking changes
108
114
109
- - The feature gate requires you to select a subvariant if possible. ([ #75 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/75 ) )
115
+ - The feature gate requires you to select a subvariant if possible. ([ #75 ] )
110
116
- Split up ` stm32f302 ` into sub-targets ` stm32f302xb ` ,` stm32f302xc ` ,` stm32f302xd ` ,` stm32f302xe `
111
- - Bump ` stm32f3 ` dependency to ` 0.11.0 ` ([ #97 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/97 ) )
112
- - The ` stm32f3 ` reexport is now renamed from ` stm32 ` to ` pac ` ([ #101 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/101 ) )
117
+ - Bump ` stm32f3 ` dependency to ` 0.11.0 ` ([ #97 ] )
118
+ - The ` stm32f3 ` reexport is now renamed from ` stm32 ` to ` pac ` ([ #101 ] )
113
119
- The correct ` stm32f3 ` modules are now used for the ` stm32f318 ` and ` stm32f738 `
114
120
targets. As a result, some previously (wrongly) supported peripherals have
115
- been removed from these targets. ([ #116 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/116 ) )
121
+ been removed from these targets. ([ #116 ] )
116
122
117
123
## [ v0.4.3] - 2020-04-11
118
124
119
125
### Added
120
126
121
- - Independent Watchdog ([ #58 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/58 ) )
127
+ - Independent Watchdog ([ #58 ] )
122
128
123
129
### Fixed
124
130
125
- - Wrong default modes for debug GPIO pins ([ #82 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/82 ) )
131
+ - Wrong default modes for debug GPIO pins ([ #82 ] )
126
132
- Wrong calculation of HCLK prescaler, if using a prescaler value equal or
127
- higher than 64 ([ #42 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/42 ) )
128
- - UART reception error flags not cleared ([ #91 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/91 ) )
133
+ higher than 64 ([ #42 ] )
134
+ - UART reception error flags not cleared ([ #91 ] )
129
135
130
136
## [ v0.4.2] - 2020-03-21
131
137
132
138
### Fixed
133
139
134
- - Wrong frequency reported by ` MonoTimer ` ([ #56 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/56 ) )
135
- - Use automatic mode with I2C autoend on ` Read ` ([ #72 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/72 ) )
140
+ - Wrong frequency reported by ` MonoTimer ` ([ #56 ] )
141
+ - Use automatic mode with I2C autoend on ` Read ` ([ #72 ] )
136
142
137
143
### Changed
138
144
139
- - Bump ` stm32f3 ` dependency to ` 0.10.0 ` ([ #70 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/70 ) )
145
+ - Bump ` stm32f3 ` dependency to ` 0.10.0 ` ([ #70 ] )
140
146
141
147
## [ v0.4.1] - 2020-03-07
142
148
143
149
### Added
144
150
145
- - Use Infallible error type for UART ([ #50 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/50 ) )
146
- - Implement blocking Write for UART ([ #50 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/50 ) )
147
- - Implement blocking Read for I2C ([ #52 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/52 ) )
151
+ - Use Infallible error type for UART ([ #50 ] )
152
+ - Implement blocking Write for UART ([ #50 ] )
153
+ - Implement blocking Read for I2C ([ #52 ] )
148
154
149
155
### Fixed
150
156
151
- - Regression in v0.4.0 that set SPI to LSB-first ordering ([ #60 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/60 ) )
157
+ - Regression in v0.4.0 that set SPI to LSB-first ordering ([ #60 ] )
152
158
153
159
## [ v0.4.0] - 2019-12-27
154
160
155
161
### Added
156
162
157
163
- USB Driver for all devices except ` stm32f301 ` and ` stm32f334 ` as they have no
158
- USB peripheral. ([ #24 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/24 ) )
159
- - ` StatefulOutputPin ` and ` ToggleableOutputPin ` ([ #25 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/25 ) )
160
- - Support devices with 2-bit PLLSRC fields ([ #31 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/33 ) )
164
+ USB peripheral. ([ #24 ] )
165
+ - ` StatefulOutputPin ` and ` ToggleableOutputPin ` ([ #25 ] )
166
+ - Support devices with 2-bit PLLSRC fields ([ #31 ] )
161
167
- This allows using 72 MHz ` sysclk ` on the ` stm32f303 `
162
- - Analog gpio trait ([ #33 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/33 ) )
163
- - Add PWM Channels ([ #34 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/34 ) )
168
+ - Analog gpio trait ([ #33 ] )
169
+ - Add PWM Channels ([ #34 ] )
164
170
- SPI embedded hal modes are now public
165
- ([ #35 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/18 ) )
171
+ ([ #35 ] )
166
172
167
173
### Breaking changes
168
174
169
175
- Alternate gpio functions are now ** only** made available for devices, which
170
- have them. ([ #21 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/21 ) )
176
+ have them. ([ #21 ] )
171
177
- ` stm32f303 ` is now split into ` stm32f303xd ` and ` stm32f303xe ` as they provide
172
178
different alternate gpio functions. ` stm32f303 ` is still available.
173
179
- Bump ` stm32f3 ` dependency to ` 0.9.0 `
174
- ([ #39 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/39 ) )
180
+ ([ #39 ] )
175
181
176
182
### Fixed
177
183
178
- - Fixed wrong initialization of the SPI ([ #35 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/35 ) )
184
+ - Fixed wrong initialization of the SPI ([ #35 ] )
179
185
180
186
## [ v0.3.0] - 2019-08-26
181
187
182
188
### Added
183
189
184
- - HSE and USB clock are now supported ([ #18 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/18 ) )
190
+ - HSE and USB clock are now supported ([ #18 ] )
185
191
186
192
### Changed
187
193
188
- - Bump ` stm32f3 ` version to ` 0.8.0 ` ([ #19 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/19 ) )
194
+ - Bump ` stm32f3 ` version to ` 0.8.0 ` ([ #19 ] )
189
195
190
196
## [ v0.2.3] - 2019-07-07
191
197
192
198
### Fixed
193
199
194
- - Fix timer initialization ([ #17 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/17 ) )
200
+ - Fix timer initialization ([ #17 ] )
195
201
196
202
## [ v0.2.2] - 2019-07-06
197
203
198
204
## Fixed
199
205
200
- - Missing ` stm32f303 ` timers ([ #16 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/16 ) )
206
+ - Missing ` stm32f303 ` timers ([ #16 ] )
201
207
202
208
## [ v0.2.1] - 2019-07-06
203
209
204
210
### Added
205
211
206
- - Fully erased pin ([ #14 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/14 ) )
212
+ - Fully erased pin ([ #14 ] )
207
213
208
214
## [ v0.2.0] - 2019-07-02
209
215
210
216
### Changed
211
217
212
- - Bump ` stm32f3 ` version to ` 0.7.1 ` ([ #12 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/12 ) )
213
- - Bump ` embedded-hal ` version to ` 0.2.3 ` ([ #11 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/11 ) )
218
+ - Bump ` stm32f3 ` version to ` 0.7.1 ` ([ #12 ] )
219
+ - Bump ` embedded-hal ` version to ` 0.2.3 ` ([ #11 ] )
214
220
215
221
### Fixed
216
222
217
- - Various peripheral mappings for some devices ([ #12 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/12 ) )
223
+ - Various peripheral mappings for some devices ([ #12 ] )
218
224
219
225
### Breaking changes
220
226
@@ -224,19 +230,19 @@ let clocks = rcc
224
230
225
231
### Added
226
232
227
- - Support for GPIO AF14 ([ #6 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/6 ) )
233
+ - Support for GPIO AF14 ([ #6 ] )
228
234
229
235
## [ v0.1.4] - 2019-05-04
230
236
231
237
### Fixed
232
238
233
- - Fixed I2C address ([ #4 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/4 ) )
239
+ - Fixed I2C address ([ #4 ] )
234
240
235
241
## [ v0.1.3] - 2019-04-12
236
242
237
243
### Added
238
244
239
- - Implement GPIO ` InputPin ` traits ([ #2 ] ( https://github.com/stm32-rs/stm32f3xx-hal/pull/2 ) )
245
+ - Implement GPIO ` InputPin ` traits ([ #2 ] )
240
246
241
247
## [ v0.1.2] - 2019-04-06
242
248
@@ -256,7 +262,72 @@ let clocks = rcc
256
262
257
263
- Support ` stm32f303 ` device
258
264
259
- [ Unreleased ] : https://github.com/stm32-rs/stm32f3xx-hal/compare/v0.6.0...HEAD
265
+ [ #184 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/184
266
+ [ #172 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/172
267
+ [ #170 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/170
268
+ [ #164 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/164
269
+ [ #164 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/164
270
+ [ #164 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/164
271
+ [ #164 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/164
272
+ [ #164 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/164
273
+ [ #156 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/156
274
+ [ #154 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/154
275
+ [ #152 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/152
276
+ [ #151 ] : https://github.com/stm32-rs/stm32f3xx-hal/issues/151
277
+ [ #139 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/139
278
+ [ #136 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/136
279
+ [ #132 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/132
280
+ [ #129 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/129
281
+ [ #116 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/116
282
+ [ #114 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/114
283
+ [ #107 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/107
284
+ [ #101 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/101
285
+ [ #100 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/100
286
+ [ #99 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/99
287
+ [ #99 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/99
288
+ [ #99 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/99
289
+ [ #98 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/98
290
+ [ #97 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/97
291
+ [ #91 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/91
292
+ [ #86 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/86
293
+ [ #86 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/86
294
+ [ #82 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/82
295
+ [ #75 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/75
296
+ [ #72 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/72
297
+ [ #70 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/70
298
+ [ #67 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/67
299
+ [ #67 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/67
300
+ [ #60 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/60
301
+ [ #58 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/58
302
+ [ #56 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/56
303
+ [ #52 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/52
304
+ [ #50 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/50
305
+ [ #50 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/50
306
+ [ #47 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/47
307
+ [ #42 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/42
308
+ [ #39 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/39
309
+ [ #35 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/18
310
+ [ #35 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/35
311
+ [ #34 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/34
312
+ [ #33 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/33
313
+ [ #31 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/33
314
+ [ #25 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/25
315
+ [ #24 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/24
316
+ [ #21 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/21
317
+ [ #19 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/19
318
+ [ #18 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/18
319
+ [ #17 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/17
320
+ [ #16 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/16
321
+ [ #14 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/14
322
+ [ #12 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/12
323
+ [ #12 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/12
324
+ [ #11 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/11
325
+ [ #6 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/6
326
+ [ #4 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/4
327
+ [ #2 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/2
328
+
329
+ [ Unreleased ] : https://github.com/stm32-rs/stm32f3xx-hal/compare/v0.6.1...HEAD
330
+ [ v0.6.0 ] : https://github.com/stm32-rs/stm32f3xx-hal/compare/v0.6.0...v0.6.1
260
331
[ v0.6.0 ] : https://github.com/stm32-rs/stm32f3xx-hal/compare/v0.5.0...v0.6.0
261
332
[ v0.5.0 ] : https://github.com/stm32-rs/stm32f3xx-hal/compare/v0.4.3...v0.5.0
262
333
[ v0.4.3 ] : https://github.com/stm32-rs/stm32f3xx-hal/compare/v0.4.2...v0.4.3
0 commit comments