577f060d24
Release embassy-sync v0.2.0
2023-04-13 23:40:49 +02:00
20aa86d63e
Address review comments
2023-03-27 18:21:11 +02:00
a77fdefd7c
Correct copy/paste errors
2023-03-27 15:37:12 +02:00
a6cef4baf2
Add logging and interface for debugging buffer usage
2023-03-27 14:19:00 +02:00
7b9075130e
embassy_usb: Add split() for cdc_acm
2023-03-04 10:36:10 +01:00
86487db5d1
usb: use InterfaceNumber in msos.
2023-02-08 00:30:53 +01:00
3af991ab63
usb: unify ControlHandler+DeviceStateHandler, route all control requests to all handlers.
...
- Allows classes to handle vendor requests.
- Allows classes to use a single handler for multiple interfaces.
- Allows classes to access the other events (previously only `reset` was available).
2023-02-08 00:17:08 +01:00
1d841cc8ac
usb: make max interface count configurable at compile time.
2023-02-08 00:16:04 +01:00
aa21aebb0b
Lazily encode UTF16 values and add docs
2023-02-07 14:24:35 -05:00
9f9230ae7a
Convert MS OS descriptor builder to a writer API
...
This brings it inline with the other embassy-usb descriptor APIs and allows it to integrate well with the Builder to allow class constructors to add MS OS descriptors.
Also adds a `usb_serial_winusb` example to demonstrate how to use the API.
2023-02-07 14:24:35 -05:00
b9ecdb72bb
usb: remove msos dead code
2023-02-07 14:24:35 -05:00
617b0a03b9
usb: fix descriptor set length and DeviceInterfaceGUIDs
2023-02-07 14:24:35 -05:00
f5ff3c4ac3
usb: add support for MS OS Descriptors
2023-02-07 14:24:35 -05:00
465e4c8b19
Merge #1151
...
1151: USB: allow setting the interface string for interface alt settings r=Dirbaio a=mattico
This is a breaking change to embassy-usb's API.
Co-authored-by: Matt Ickstadt <matt@beckenterprises.com >
2023-02-01 00:36:22 +00:00
ca10fe7135
usb: docs
2023-01-31 22:27:19 +01:00
c9e2cd6dd4
usb: allow adding isochronous endpoints
2023-01-27 15:53:13 +01:00
7ecb05ff77
usb: allow setting the interface string for interface alt settings
2023-01-13 12:10:36 -06:00
ce842fe28c
Refactor embassy-usb address handling to allow reordering of status resoponse
2023-01-11 17:47:12 +01:00
a6b52bde58
Merge #1130
...
1130: USB serial (CDC-ACM) improvements r=Dirbaio a=timokroeger
* Remove unused call management descriptor
* Set flag for supported capabilities
The rp `usb_serial` example still works with windows hosts.
Co-authored-by: Timo Kröger <timokroeger93@gmail.com >
2023-01-02 22:51:58 +00:00
771806be79
net/chan: split state runner.
2022-12-27 01:07:58 +01:00
4e0d563997
usb cdc-acm: Set flag for supported capabilities
2022-12-26 09:36:04 +01:00
97f9f248f4
usb cdc-acm: Remove unused call management descriptor
2022-12-26 09:35:23 +01:00
007246b160
net: split channel-based driver impl from usb cdc-ncm into a separate crate.
2022-12-26 04:49:08 +01:00
1f033d509a
net: split driver trait to a separate crate.
2022-12-26 04:49:08 +01:00
e9219405ca
usb/cdc-ncm: add embassy-net Device implementation.
2022-12-13 16:43:25 +01:00
4d84b5469e
Drive-by documentation link fixes
2022-11-27 16:32:18 -05:00
6718ca3a94
all Cargo.toml: Add license to all crate Cargo.toml files
...
Closes: https://github.com/embassy-rs/embassy/issues/1002
2022-10-07 12:41:56 +02:00
753781a263
Build docs in CI
2022-10-02 23:30:12 +02:00
f27a47a37b
usb: move classes into the embassy-usb
crate.
2022-09-26 13:00:21 +02:00
f4f5824972
usb: do not allow converting Directon to/from u8
2022-09-26 12:35:33 +02:00
7f7c14b7bc
usb: split driver trait to separate crate.
2022-09-26 12:29:27 +02:00
a45fb2d718
usb: fix compile errors with the log feature
2022-09-24 09:42:06 -07:00
897b72c872
Update Rust nightly.
...
Removes feature(generic_associated_types)
2022-09-22 16:38:14 +02:00
598689ef43
futures: move select* and join* to separate modules.
2022-08-29 01:00:22 +02:00
21072bee48
split embassy-util
into embassy-futures
, embassy-sync
.
2022-08-22 22:18:13 +02:00
3e155d2ec3
nRF documentation warning fixes
2022-08-22 16:37:35 +02:00
dff6847e9c
Add -boot docserver metadata.
2022-08-15 20:41:00 +02:00
a0f1b0ee01
Split embassy crate into embassy-executor, embassy-util.
2022-07-29 23:40:36 +02:00
8d71a358c8
Build in a new Unpowered state
...
Replaces the sub-state of representing being being available. Power states also now set enable/disable directly too, which simplifies code.
2022-07-08 15:30:15 +10:00
4a8f117f25
Puts in the machinery to handle power detected/removed
2022-07-07 10:08:57 +10:00
c46e9b6cfc
Introduces EnabledUsbDevice
...
EnabledUsbDevice is a wrapper around the UsbDevice where their enablement is also subject to external events, such as POWER events for nRF. It is introduced generically to support other platforms should they also require external signalling for enablement.
2022-07-07 10:08:57 +10:00
948bb93dc2
docs: Add $COMMIT to git srclinks.
2022-06-26 23:55:38 +02:00
a8703b7598
Run rustfmt.
2022-06-12 22:22:31 +02:00
39ab599eed
usb: set default max_packet_size_0 to 64.
...
Supported chips can always do 64 bytes, 8 bytes seems to be more rare.
We can add a way for the driver to specify the default in the future.
2022-05-31 02:01:22 +02:00
a7383840e7
usb: make ControlPipe accept, reject async.
2022-05-30 00:35:27 +02:00
883e28a0fb
usb: add first, last params to ControlPipe data_in, data_out.
2022-05-30 00:08:28 +02:00
1ec2e5672f
usb: remove is_stalled, set_stalled from Endpoint.
...
They're unused, and I believe it's not allowed for classes to
stall EPs on their own?
2022-05-30 00:07:15 +02:00
98d8c9373d
usb: delay bus.set_address() to after ending the control transfer.
2022-05-30 00:03:36 +02:00
5fd55f9529
usb: parse request in embassy-usb instead of the driver.
2022-05-12 18:14:48 +02:00
6af5f8eb2d
usb: merge alloc_control_pipe
and into_bus
into start
.
...
This prevents calling `alloc_control_pipe` twice at compile time, which was
always an error.
2022-05-10 17:30:07 +02:00