| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | | Got closures to work in async, added bunch of tests | Peter Krull | 2024-02-14 | 1 | -48/+292 |
| * | | Removed unused lifetime, change most fn -> FnMut | Peter Krull | 2024-02-13 | 1 | -14/+12 |
| * | | Change import formatting | Peter Krull | 2024-02-13 | 1 | -11/+8 |
| * | | Add initial implementation of `MultiSignal` sync primitive | Peter Krull | 2024-02-13 | 2 | -0/+286 |
| |/ |
|
| * | correct spelling of the word "receive" | Stefan Gehr | 2024-02-03 | 1 | -1/+1 |
| * | sync/pipe: be able to be zero-initialized | Sam Lakerveld | 2024-02-01 | 1 | -11/+11 |
| * | Complete cargo.tomls more. | Dario Nieuwenhuis | 2024-01-12 | 1 | -0/+1 |
| * | Centralize license and MSRV boilerplate into the repo readme. | Dario Nieuwenhuis | 2024-01-11 | 1 | -14/+0 |
| * | Remove nightly autodetects. | Dario Nieuwenhuis | 2024-01-10 | 2 | -15/+0 |
| * | Put waiting state back if any | Rasmus Melchior Jacobsen | 2023-12-20 | 1 | -1/+4 |
| * | feat(embassy-sync): Add try_take() to signal | Rasmus Melchior Jacobsen | 2023-12-20 | 1 | -0/+11 |
| * | embassy-sync 0.5 | Scott Mabin | 2023-12-04 | 2 | -1/+8 |
| * | Remove nightly and unstable-traits features in preparation for 1.75. | Dario Nieuwenhuis | 2023-11-29 | 4 | -63/+68 |
| * | Update embedded-(hal,io,nal). | Dario Nieuwenhuis | 2023-11-29 | 1 | -1/+1 |
| * | revert module changes, reexport heapless relevant items | Scott Mabin | 2023-11-20 | 3 | -8/+6 |
| * | docs | Scott Mabin | 2023-11-18 | 2 | -1/+6 |
| * | more clean up, refactor channel into module to share code | Scott Mabin | 2023-11-18 | 3 | -48/+6 |
| * | reduce duplication further by sharing Dynamic sender/receiver | Scott Mabin | 2023-11-18 | 2 | -85/+3 |
| * | docs and simple test for priority | Scott Mabin | 2023-11-18 | 1 | -0/+11 |
| * | Reduce duplication, fix tests | Scott Mabin | 2023-11-18 | 2 | -61/+41 |
| * | Priority channel using binary heap | Scott Mabin | 2023-11-18 | 2 | -0/+745 |
| * | Update heapless to v0.8, embedded-nal-async to v0.7 | Dario Nieuwenhuis | 2023-11-10 | 1 | -1/+1 |
| * | Upgrade static-cell to v2.0 | Dario Nieuwenhuis | 2023-11-02 | 1 | -1/+1 |
| * | Prepare embassy-net 0.2.1 and embassy-sync 0.4.0 | Dániel Buga | 2023-10-31 | 2 | -2/+7 |
| * | Re-add impl_trait_projections | Dániel Buga | 2023-10-30 | 1 | -1/+2 |
| * | update embedded-io, embedded-nal-async. | Dario Nieuwenhuis | 2023-10-04 | 1 | -1/+1 |
| * | Remove impl_trait_projections. | Dario Nieuwenhuis | 2023-10-02 | 1 | -1/+1 |
| * | feat: bump embassy-sync version to 0.3.0 | Ulf Lilleengen | 2023-09-14 | 2 | -2/+9 |
| * | Rename zero_copy -> zerocopy. | Dario Nieuwenhuis | 2023-09-04 | 2 | -1/+1 |
| * | Add docs to zero-copy-channel | Ruben De Smet | 2023-09-04 | 1 | -0/+51 |
| * | Prefer `receive` over `recv` | Ruben De Smet | 2023-09-04 | 1 | -9/+9 |
| * | Move embassy-net-driver-channel::zerocopy_channel to embassy_sync::zero_copy_... | Ruben De Smet | 2023-09-04 | 2 | -0/+210 |
| * | Merge pull request #1854 from bugadani/str | Dario Nieuwenhuis | 2023-09-03 | 2 | -2/+2 |
| |\ |
|
| | * | Use fmt::unwrap | Dániel Buga | 2023-09-02 | 2 | -2/+2 |
| * | | Sync all fmt.rs files. | Dario Nieuwenhuis | 2023-08-30 | 1 | -6/+39 |
| * | | sync/pipe: impl BufRead. | Dario Nieuwenhuis | 2023-08-30 | 2 | -125/+227 |
| |/ |
|
| * | Merge pull request #1763 from rubdos/sender-receiver-with-ctx | Dario Nieuwenhuis | 2023-08-22 | 1 | -54/+136 |
| |\ |
|
| | * | Deprecate *recv* in favor of *receive* | Ruben De Smet | 2023-08-22 | 1 | -44/+44 |
| | * | Implement Channel::poll_receive(..) -> Poll<T> | Ruben De Smet | 2023-08-11 | 1 | -4/+39 |
| | * | Channel poll methods return Poll instead of bool | Ruben De Smet | 2023-08-11 | 1 | -14/+22 |
| | * | Expose poll_ready_to_{send,receive} in Sender/Receiver | Ruben De Smet | 2023-08-11 | 1 | -0/+39 |
| * | | Fix typo | Dániel Buga | 2023-08-15 | 1 | -1/+1 |
| |/ |
|
| * | embassy-sync: manual Copy impls for channel and pipe | Sam Lakerveld | 2023-08-08 | 2 | -6/+12 |
| * | Update to embedded-io 0.5 (#1752) | Dario Nieuwenhuis | 2023-08-07 | 2 | -12/+12 |
| * | wpan: fully implement initial draft concept | xoviat | 2023-07-18 | 1 | -0/+22 |
| * | sync/pipe: fix doc typos. | Dario Nieuwenhuis | 2023-06-27 | 1 | -2/+2 |
| * | fmt: remove unused defmt::timestamp! | Dario Nieuwenhuis | 2023-06-09 | 1 | -3/+0 |
| * | sync/pipe: write all user data to pipe | ZhangYong | 2023-06-04 | 1 | -0/+10 |
| * | Use make_static! from static-cell v1.1 | Dario Nieuwenhuis | 2023-06-01 | 1 | -1/+1 |
| * | sync: do will_wake check in MultiWakerRegistration. | Dario Nieuwenhuis | 2023-05-26 | 2 | -43/+40 |