aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-04-14 23:46:33 +0200
committerGitHub <[email protected]>2024-04-14 23:46:33 +0200
commit7989e3b59dfd8b37c870e4908bdfc052ddbbb9c4 (patch)
tree1477ef27772bc4fdcd7074a00ad2a72416821d92
parent70283f128a0ff246c8793f81b9f7c5153431eb9b (diff)
parentfcb270bcede54d975ff89c05691131d2a898638f (diff)
Merge pull request #2801 from plaes/nrf-changelog
nrf: Add basic CHANGELOG summarizing changes in embassy-nrf
-rw-r--r--embassy-nrf/CHANGELOG.md40
1 files changed, 40 insertions, 0 deletions
diff --git a/embassy-nrf/CHANGELOG.md b/embassy-nrf/CHANGELOG.md
new file mode 100644
index 000000000..773a1a108
--- /dev/null
+++ b/embassy-nrf/CHANGELOG.md
@@ -0,0 +1,40 @@
1# Changelog for embassy-nrf
2
3All notable changes to this project will be documented in this file.
4
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8## Unreleased
9
10- Drop `sealed` mod
11- nrf52840: Add dcdc voltage parameter to configure REG0 regulator
12- radio: Add support for IEEE 802.15.4 and BLE via radio peripheral
13- spim: Reduce trace-level messages ("Copying SPIM tx buffer..")
14- uart: Add support for rx- or tx-only BufferedUart
15- uart: Implement splitting Rx/Tx
16- spi: Allow specifying OutputDrive for SPI spins
17- pdm: Fix gain register value derivation
18- spim: Implement chunked DMA transfers
19- spi: Add bounds checks for EasyDMA buffer size
20- uarte: Add support for handling RX errors
21- nrf51: Implement support for nrf51 chip
22- pwm: Expose `duty` method
23- pwm: Fix infinite loop
24- spi: Add support for configuring bit order for bus
25- pwm: Expose `pwm::PWM_CLK_HZ` and add `is_enabled` method
26- gpio: Drop GPIO Pin generics (API break)
27
28## 0.1.0 - 2024-01-12
29
30- First release with support for following NRF chips:
31 - nrf52805
32 - nrf52810
33 - nrf52811
34 - nrf52820
35 - nrf52832
36 - nrf52833
37 - nrf52840
38 - nrf5340
39 - nrf9160
40