aboutsummaryrefslogtreecommitdiff
path: root/embassy-usb-driver/CHANGELOG.md
diff options
context:
space:
mode:
authorFelipe Balbi <[email protected]>2025-08-29 14:32:12 -0700
committerFelipe Balbi <[email protected]>2025-08-29 14:45:03 -0700
commit6dc06d47bf76e32096d5e42914cd0269476f5855 (patch)
treecb3f3759d72b49b1de0b1213abe736fc8e5a5e24 /embassy-usb-driver/CHANGELOG.md
parentf86cf87f2f20f723e2ba2fe7d83908a2b3bac2d1 (diff)
feat: add helper to read/write full transfer blocks
instead of always transferring only USB packets, add a provided method to transmit an entire data block by using a simple loop construct. Signed-off-by: Felipe Balbi <[email protected]>
Diffstat (limited to 'embassy-usb-driver/CHANGELOG.md')
-rw-r--r--embassy-usb-driver/CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/embassy-usb-driver/CHANGELOG.md b/embassy-usb-driver/CHANGELOG.md
index 15875e087..71768d7e5 100644
--- a/embassy-usb-driver/CHANGELOG.md
+++ b/embassy-usb-driver/CHANGELOG.md
@@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8<!-- next-header --> 8<!-- next-header -->
9## Unreleased - ReleaseDate 9## Unreleased - ReleaseDate
10 10
11- Add `EndpointOut::read_data()` and `EndpointIn::write_data()` provided methods.
12
11## 0.2.0 - 2025-07-16 13## 0.2.0 - 2025-07-16
12 14
13- Make USB endpoint allocator methods accept an optional `EndpointAddress`. 15- Make USB endpoint allocator methods accept an optional `EndpointAddress`.