aboutsummaryrefslogtreecommitdiff
path: root/examples/std
Commit message (Collapse)AuthorAgeFilesLines
...
* Add UDP example appArtur Kowalski2022-08-102-1/+110
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-294-12/+13
|
* Remove the authors field from Cargo.tomlsDario Nieuwenhuis2022-06-181-1/+0
| | | | | | | | | | | It currently contains whoever was first to write some code for the crate, even if many more people have contributed to it later. The field is "sort of" deprecated, it was made optional recently: https://rust-lang.github.io/rfcs/3052-optional-authors-field.html Due the the reasons listed there I believe removing it is better than setting it to generic fluff like "The Embassy contributors".
* Update to 2021 edition. (#820)Dario Nieuwenhuis2022-06-181-1/+1
|
* Run rustfmt.Dario Nieuwenhuis2022-06-122-16/+10
|
* WIP embassy-net v2Dario Nieuwenhuis2022-05-252-25/+28
|
* Make embassy-net nightly-only.Dario Nieuwenhuis2022-05-191-1/+1
| | | | | It's useless without async traits, so juggling the `nightly` feature around is not worth the pain.
* Update embedded-io to 0.3Dario Nieuwenhuis2022-05-191-1/+1
|
* Replace embassy::io with embedded_io.Dario Nieuwenhuis2022-05-073-10/+12
|
* net: add functions to get current Eth and IP configDario Nieuwenhuis2022-05-021-1/+1
|
* net: auto-enable defmt in smoltcp using namespaced features.Dario Nieuwenhuis2022-04-131-1/+1
|
* embassy, embassy-nrf: add `nightly` Cargo feature to gate nightly-only features.Dario Nieuwenhuis2022-02-121-1/+1
|
* Do not use exported Result to mitigate problems with clap.Matous Hybl2021-12-082-3/+8
|
* Fix embassy-net documentation of running examples.Matous Hybl2021-12-061-2/+2
|
* net: update smoltcpDario Nieuwenhuis2021-11-263-4/+3
|
* net: don't depend directly on smoltcp outside embassy-netDario Nieuwenhuis2021-11-242-8/+3
|
* Further cargo muckings for smol/defmt.Bob McWhirter2021-11-151-1/+5
|
* Replace rustflags with build.rs extra-link-args.Dario Nieuwenhuis2021-11-071-1/+1
| | | | | | | | | | | | Rustflags apply to ALL the crates in the graph, while we only need them for the toplevel crate which is the only one getting linked. Rustflags are not equal for all crates, this caused cargo to re-build the same dependency crate multiple times uselessly. After this change, deps are reused more, making builds faster. Note that this only applies when sharing the target/ dir for multiple crates in the repo which is not the default.
* examples/std: fix warningDario Nieuwenhuis2021-10-181-2/+1
|
* Update clapDario Nieuwenhuis2021-10-182-4/+3
|
* Update lots of depsDario Nieuwenhuis2021-09-112-15/+12
|
* Remove trait_alias, allow(incomplete_features).Dario Nieuwenhuis2021-09-033-3/+0
| | | | trait_alias seems unused. no idea why it's there.
* Fix embassy::main macros for std targetUlf Lilleengen2021-09-021-9/+4
|
* std: fold into embassy core, add non-hacky time driver.Dario Nieuwenhuis2021-08-254-6/+4
|
* Update nightly, remove removed features.Dario Nieuwenhuis2021-08-043-6/+0
|
* Fix warnings in std and rpRukai2021-07-042-14/+19
|
* net: Make the user pass in the StackResources in initThales Fragoso2021-06-201-1/+4
| | | | | By having the user pass in the resources, we can make them generic, this way the user can choose the size of the individual resources
* UPdate smoltcpDario Nieuwenhuis2021-06-121-1/+1
|
* Update heaplessDario Nieuwenhuis2021-06-041-1/+1
|
* Move examples to a subdirectoryDario Nieuwenhuis2021-06-026-0/+510