aboutsummaryrefslogtreecommitdiff
path: root/embassy-net
Commit message (Collapse)AuthorAgeFilesLines
...
* Centralize license and MSRV boilerplate into the repo readme.Dario Nieuwenhuis2024-01-111-10/+0
|
* Remove nightly autodetects.Dario Nieuwenhuis2024-01-101-18/+0
|
* net: add packet-trace feature.Dario Nieuwenhuis2024-01-102-2/+14
|
* New embassy-net releaseScott Mabin2024-01-043-4/+6
|
* feat: impl ReadReady and WriteReady for tcpswanandx2024-01-031-0/+24
|
* Add set_hop_limit to UDP socketsLoïc Damien2023-12-281-0/+5
|
* Upgrade to smoltcp v0.11.Dario Nieuwenhuis2023-12-232-9/+18
|
* [embassy-net] Auto-documented feature flagsBarnaby Walters2023-12-222-0/+20
|
* chore: replace make_static! macro usage with non-macro versionUlf Lilleengen2023-12-211-2/+4
|
* update release version in examples and other cratesScott Mabin2023-12-041-2/+2
|
* Remove nightly and unstable-traits features in preparation for 1.75.Dario Nieuwenhuis2023-11-295-11/+25
|
* Update embedded-(hal,io,nal).Dario Nieuwenhuis2023-11-291-2/+2
|
* populate `medium` in DriverAdapter struct in IGMP codeStephan Wolski2023-11-191-0/+4
|
* Update changelogEmil Fresk2023-11-141-0/+2
|
* Use smoltcp constant in results from DNSEmil Fresk2023-11-142-2/+10
|
* Update smoltcp and fix errors from thatEmil Fresk2023-11-141-2/+2
|
* Update heapless to v0.8, embedded-nal-async to v0.7Dario Nieuwenhuis2023-11-103-8/+6
|
* Fix typo in embassy-net docsNigecat2023-11-081-1/+1
|
* Ensure TcpIo not blocking when reading into empty sliceDániel Buga2023-11-062-0/+11
|
* Prepare embassy-net 0.2.1 and embassy-sync 0.4.0Dániel Buga2023-10-312-2/+7
|
* Re-add impl_trait_projectionsDániel Buga2023-10-301-1/+2
|
* net: Reset DHCP socket when the link up is detectedGabriel Górski2023-10-231-0/+3
| | | | | | | | | Previously, because DHCP DISCOVER is sent before the link is established, socket has to timeout first. Which takes extra 10 s. Now if the state of the link changed to up, socket is explicitly reset so the DISCOVER is repeated much earlier and DHCP configuration is acquired much faster.
* net/driver: remove Medium, make HardwareAddress non_exhaustive.Dario Nieuwenhuis2023-10-183-28/+31
|
* Prepare embassy-net(/-driver,/-driver-channel) 0.2.0Dániel Buga2023-10-162-2/+33
|
* time: add `links` key, release v0.1.5.Dario Nieuwenhuis2023-10-161-1/+1
|
* Wake stack's task after queueing a DNS queryDániel Buga2023-10-141-1/+4
|
* Release embassy-time 0.1.4Dániel Buga2023-10-121-1/+1
|
* net: remove atomic-polyfill.Dario Nieuwenhuis2023-10-122-9/+7
|
* net: add support for dhcp hostname option.Dario Nieuwenhuis2023-10-072-0/+45
|
* Merge pull request #2014 from bugadani/udpUlf Lilleengen2023-10-051-1/+1
|\ | | | | | | Reexport IpListenEndpoint for TCP
| * Reexport IpListenEndpoint for TCPDániel Buga2023-10-051-1/+1
| |
* | update embedded-io, embedded-nal-async.Dario Nieuwenhuis2023-10-041-2/+2
| |
* | Remove impl_trait_projections.Dario Nieuwenhuis2023-10-021-1/+1
|/
* net: allow non-'static drivers.Dario Nieuwenhuis2023-09-281-3/+3
|
* feat: bump embassy-sync version to 0.3.0Ulf Lilleengen2023-09-141-1/+1
| | | | Update changelog in preparation for release
* Fix doc typoPolly2023-09-141-1/+1
|
* add SocketNotBound error messageJuliDi2023-09-101-1/+10
|
* yield -> returnJulian2023-09-091-1/+1
| | | Co-authored-by: Dario Nieuwenhuis <[email protected]>
* improve docstringJuliDi2023-09-091-6/+5
|
* fix poll_fn, add documentationJuliDi2023-09-081-12/+41
|
* fix typosJuliDi2023-09-081-1/+1
|
* wait_config_up first stepsJuliDi2023-09-081-0/+26
|
* Merge pull request #1854 from bugadani/strDario Nieuwenhuis2023-09-033-11/+11
|\ | | | | embassy-{net, sync, time}: Use fmt::unwrap
| * Use fmt::unwrapDániel Buga2023-09-023-11/+11
| |
* | Sync all fmt.rs files.Dario Nieuwenhuis2023-08-301-6/+39
| |
* | Release embassy-time v0.1.3Jesse Braham2023-08-281-1/+1
|/
* net: improve error message on unsupported medium.Dario Nieuwenhuis2023-08-252-1/+5
|
* net: allow changing IP config at runtime.Dario Nieuwenhuis2023-08-251-172/+148
|
* Merge pull request #1802 from avlec/error-translationDario Nieuwenhuis2023-08-181-2/+9
|\ | | | | | | Add error translation to tcp errors
| * add error translation to tcp errorsAlec Cox2023-08-181-2/+9
| | | | | | | | | | Translation of tpc client ConnectError and Error to the appropriate embedded_io_async errors