aboutsummaryrefslogtreecommitdiff
path: root/examples/std
Commit message (Collapse)AuthorAgeFilesLines
* Fix warnings in recent nightly.Dario Nieuwenhuis2024-03-203-5/+0
|
* fix: typo in netcat command for std exampleValentin Trophime2024-01-291-2/+2
| | | The previous given command `nc -l 8000` doesn't let me see anything and lead to a "WARN connect error: ConnectionReset". By explicitly changing the `local-port` of `nc` with the `-p` I can now see the `Hello` message printed, and the warning log disappeared.
* bump embassy-time 0.3, embassy-executor 0.5, embassy-net 0.4.Dario Nieuwenhuis2024-01-111-3/+3
|
* time: split queue driver too, don't reexport drivers.Dario Nieuwenhuis2024-01-111-0/+1
|
* New embassy-net releaseScott Mabin2024-01-041-1/+1
|
* examples: configure executor task arena sizes.Dario Nieuwenhuis2024-01-021-1/+1
|
* ci: use beta, add secondary nightly ci.Dario Nieuwenhuis2023-12-218-15/+2
|
* chore: replace make_static! macro usage with non-macro versionUlf Lilleengen2023-12-215-21/+32
|
* Update all references to `embasy-executor` to the latest versionJesse Braham2023-12-061-1/+1
|
* 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-292-4/+3
|
* Update embedded-(hal,io,nal).Dario Nieuwenhuis2023-11-291-2/+2
|
* executor: release v0.3.3Dario Nieuwenhuis2023-11-151-1/+1
|
* Update heapless to v0.8, embedded-nal-async to v0.7Dario Nieuwenhuis2023-11-101-2/+1
|
* Upgrade static-cell to v2.0Dario Nieuwenhuis2023-11-021-1/+1
|
* Release embassy-executor v0.3.1Dario Nieuwenhuis2023-11-011-1/+1
|
* Prepare embassy-net 0.2.1 and embassy-sync 0.4.0Dániel Buga2023-10-311-1/+1
|
* Re-add impl_trait_projectionsDániel Buga2023-10-301-1/+2
|
* Prepare embassy-net(/-driver,/-driver-channel) 0.2.0Dániel Buga2023-10-161-1/+1
|
* time: add `links` key, release v0.1.5.Dario Nieuwenhuis2023-10-161-1/+1
|
* time: Update examples, tests, and other code to use new Timer::after_x ↵Adam Greig2023-10-152-3/+3
| | | | convenience methods
* Release embassy-time 0.1.4Dániel Buga2023-10-121-1/+1
|
* update embedded-io, embedded-nal-async.Dario Nieuwenhuis2023-10-041-2/+2
|
* Remove impl_trait_projections.Dario Nieuwenhuis2023-10-021-1/+1
|
* feat: bump embassy-sync version to 0.3.0Ulf Lilleengen2023-09-141-1/+1
| | | | Update changelog in preparation for release
* Release embassy-time v0.1.3Jesse Braham2023-08-281-1/+1
|
* net-ppp: add std example.Dario Nieuwenhuis2023-08-252-1/+221
|
* Bump executor crate version to 0.3.0Dániel Buga2023-08-231-1/+1
|
* Update to embedded-io 0.5 (#1752)Dario Nieuwenhuis2023-08-074-6/+7
|
* net: move tuntap from std example to separate crate. (#1737)Dario Nieuwenhuis2023-08-036-242/+5
|
* Introduce driver::HardwareAddress without smoltcp dependencyRuben De Smet2023-07-311-3/+2
|
* Use HardwareAddress in DriverRuben De Smet2023-07-281-2/+3
|
* Added debug=2 in release profile to all examples.Piotr Esden-Tempski2023-07-261-0/+3
| | | | | | | This makes rtt output work right when using `cargo run` in release mode. Debug was already enabled for release builds in some of the examples but not all.
* Release embassy-time v0.1.2Dario Nieuwenhuis2023-07-061-1/+1
|
* Release embassy-net v0.1Dario Nieuwenhuis2023-06-291-0/+23
|
* net: Support dual stack IPRuben De Smet2023-06-074-8/+8
|
* Rename StaticConfig to StaticConfigV4Ruben De Smet2023-06-064-4/+4
|
* cortex-m: remove owned interrupts.Dario Nieuwenhuis2023-06-011-1/+1
|
* Use make_static! from static-cell v1.1Dario Nieuwenhuis2023-06-015-45/+29
|
* Add std example of a TCP listenerMatt Johnston2023-05-251-0/+133
| | | | | This also demonstrates calling .abort() on a TCP socket and ensuring that the reset packet is sent out.
* net: reexport UDP PacketMetadata under the udp module.Dario Nieuwenhuis2023-05-151-2/+2
|
* net: do not use smoltcp Instant/Duration in public API.Dario Nieuwenhuis2023-05-151-1/+2
|
* Bump versions preparing for -macros and -executor releaseUlf Lilleengen2023-04-271-1/+1
|
* Release embassy-sync v0.2.0Dario Nieuwenhuis2023-04-131-1/+1
|
* executor: add Pender, rework Cargo features.Dario Nieuwenhuis2023-04-031-1/+1
| | | | | | | | | This introduces a `Pender` struct with enum cases for thread-mode, interrupt-mode and custom callback executors. This avoids calls through function pointers when using only the thread or interrupt executors. Faster, and friendlier to `cargo-call-stack`. `embassy-executor` now has `arch-xxx` Cargo features to select the arch and to enable the builtin executors (thread and interrupt).
* examples/std: fix net running out of sockets.Dario Nieuwenhuis2023-02-263-3/+3
|
* exmaples/dns: don't use the socket.Dario Nieuwenhuis2023-02-101-6/+3
|
* Rewrite to use a single socketUlf Lilleengen2023-02-101-2/+1
|
* Add DNS socket to embassy-netUlf Lilleengen2023-02-102-1/+103
|
* net: allocate space for 2 sockets, needed for dhcp.Dario Nieuwenhuis2023-01-192-2/+2
|