|
10 | 10 | - LPCOMP module ([#195]). |
11 | 11 | - TWIS module ([#196]). |
12 | 12 | - PWM module ([#200]). |
13 | | -- I2S module ([#201]). |
14 | | -- SPIS module ([#226]). |
| 13 | +- I2S module ([#201] [#209] [#225] [#237]). |
| 14 | +- SPIS module ([#226] [#236]). |
15 | 15 | - Add support for the nRF52811 ([#227]). |
| 16 | +- Add PPI channel group tasks ([#212]). |
| 17 | +- Add PPI endpoints for timers ([#239]). |
| 18 | + |
| 19 | +### Enhancements |
| 20 | + |
| 21 | +- Improve SAADC docs ([#218]). |
| 22 | +- Update Embed.toml of all examples to new defaults ([#229]). |
| 23 | +- Make `ConfigurablePpi` and subtrait of `Ppi` ([#244]). |
16 | 24 |
|
17 | 25 | ### Fixes |
18 | 26 |
|
19 | 27 | - Refuse to build nRF52+ HALs for thumbv6m targets ([#203]). |
20 | 28 | - Refuse to build `nrf52810-hal` for hard-float targets, and `nrf51-hal` for thumbv7+ targets |
21 | 29 | ([#206]). |
22 | | -- GPIOTE Port 1 and 0 differentiation for nRF52833 and nRF52840 ([#217]) |
| 30 | +- Set the correct Port in GPIOTE ([#217] [#248]). |
23 | 31 | - Correct TWIM port initialization for P1 pins ([#221]). |
| 32 | +- Fix race condition in RTC event handling ([#243]). |
24 | 33 |
|
25 | 34 | ### Breaking Changes |
26 | 35 |
|
27 | | -- Remove `Spi::read` ([#190]). |
| 36 | +- Remove `Spi::read` in favor of `transfer_split_uneven` ([#190]). |
28 | 37 | - Seal the `timer::Instance` trait ([#214]). |
29 | | -- Make GPIOs start in a `Disconnected` state instead of `Input<Floating>` ([#220]). |
| 38 | +- Make GPIOs start in a `Disconnected` state instead of `Input<Floating>` ([#220] [#245]). |
| 39 | +- 🦭 all `Instance` traits ([#255]). |
| 40 | +- 🦭 PPI traits ([#259]). |
| 41 | +- Various TWIM fixes and improvements - removes automatic transfer splitting ([#242]). |
| 42 | +- Remove typestate from RTC to make it easier to use ([#252]). |
| 43 | +- Also return owned `Pins` from `Usart::free()` ([#261]). |
| 44 | + |
| 45 | +### Internal Improvements |
| 46 | + |
| 47 | +- Utilize [`cargo-xtask`] to simplify CI and the release process ([#207] [#210]). |
| 48 | +- Add `conf()` utility function to reduce code duplication in GPIO ([#250]). |
30 | 49 |
|
31 | 50 | [#185]: https://github.com/nrf-rs/nrf-hal/pull/185 |
32 | 51 | [#188]: https://github.com/nrf-rs/nrf-hal/pull/188 |
|
36 | 55 | [#200]: https://github.com/nrf-rs/nrf-hal/pull/200 |
37 | 56 | [#201]: https://github.com/nrf-rs/nrf-hal/pull/201 |
38 | 57 | [#203]: https://github.com/nrf-rs/nrf-hal/pull/203 |
| 58 | +[#209]: https://github.com/nrf-rs/nrf-hal/pull/209 |
39 | 59 | [#190]: https://github.com/nrf-rs/nrf-hal/pull/190 |
40 | 60 | [#206]: https://github.com/nrf-rs/nrf-hal/pull/206 |
| 61 | +[#207]: https://github.com/nrf-rs/nrf-hal/pull/207 |
| 62 | +[#210]: https://github.com/nrf-rs/nrf-hal/pull/210 |
| 63 | +[#212]: https://github.com/nrf-rs/nrf-hal/pull/212 |
41 | 64 | [#217]: https://github.com/nrf-rs/nrf-hal/pull/217 |
42 | 65 | [#214]: https://github.com/nrf-rs/nrf-hal/pull/214 |
| 66 | +[#218]: https://github.com/nrf-rs/nrf-hal/pull/218 |
43 | 67 | [#220]: https://github.com/nrf-rs/nrf-hal/pull/220 |
44 | 68 | [#221]: https://github.com/nrf-rs/nrf-hal/pull/221 |
| 69 | +[#225]: https://github.com/nrf-rs/nrf-hal/pull/225 |
| 70 | +[#226]: https://github.com/nrf-rs/nrf-hal/pull/226 |
| 71 | +[#227]: https://github.com/nrf-rs/nrf-hal/pull/227 |
| 72 | +[#229]: https://github.com/nrf-rs/nrf-hal/pull/229 |
| 73 | +[#236]: https://github.com/nrf-rs/nrf-hal/pull/236 |
| 74 | +[#237]: https://github.com/nrf-rs/nrf-hal/pull/237 |
| 75 | +[#239]: https://github.com/nrf-rs/nrf-hal/pull/239 |
| 76 | +[#242]: https://github.com/nrf-rs/nrf-hal/pull/242 |
| 77 | +[#243]: https://github.com/nrf-rs/nrf-hal/pull/243 |
| 78 | +[#244]: https://github.com/nrf-rs/nrf-hal/pull/244 |
| 79 | +[#245]: https://github.com/nrf-rs/nrf-hal/pull/245 |
| 80 | +[#248]: https://github.com/nrf-rs/nrf-hal/pull/248 |
| 81 | +[#250]: https://github.com/nrf-rs/nrf-hal/pull/250 |
| 82 | +[#252]: https://github.com/nrf-rs/nrf-hal/pull/252 |
| 83 | +[#255]: https://github.com/nrf-rs/nrf-hal/pull/255 |
| 84 | +[#259]: https://github.com/nrf-rs/nrf-hal/pull/259 |
| 85 | +[#261]: https://github.com/nrf-rs/nrf-hal/pull/261 |
| 86 | +[`cargo-xtask`]: https://github.com/matklad/cargo-xtask |
45 | 87 |
|
46 | 88 | ## [0.11.1] |
47 | 89 |
|
|
0 commit comments