aboutsummaryrefslogtreecommitdiff
path: root/docs/modules/ROOT/examples
Commit message (Collapse)AuthorAgeFilesLines
* nrf/gpio: remove generics.Dario Nieuwenhuis2024-01-221-2/+1
|
* stm32/gpio: remove generics.Dario Nieuwenhuis2024-01-222-9/+8
|
* bump embassy-time 0.3, embassy-executor 0.5, embassy-net 0.4.Dario Nieuwenhuis2024-01-112-3/+3
|
* Change GPIO inherent methods back to `&self`.Dario Nieuwenhuis2024-01-101-1/+1
| | | | | | | With the embedded-hal rc3 update I changed them to require `&mut self`, but in retrospect I think `&self` is better, for extra flexibility. This PR reverts the changes from the rc3 update to inherent methods.
* ci: use beta, add secondary nightly ci.Dario Nieuwenhuis2023-12-213-3/+1
|
* Update embedded-hal to 1.0.0-rc.3Dario Nieuwenhuis2023-12-141-1/+1
|
* Update all references to `embasy-executor` to the latest versionJesse Braham2023-12-062-2/+2
|
* update release version in examples and other cratesScott Mabin2023-12-041-1/+1
|
* Remove nightly and unstable-traits features in preparation for 1.75.Dario Nieuwenhuis2023-11-291-3/+3
|
* Release embassy-time 0.1.4Dániel Buga2023-10-121-1/+1
|
* Bump executor crate version to 0.3.0Dániel Buga2023-08-232-2/+2
|
* stm32: update stm32-metapac.Dario Nieuwenhuis2023-06-191-14/+10
|
* Remove unneeded default-features=false.Dario Nieuwenhuis2023-05-292-3/+3
|
* Bump versions preparing for -macros and -executor releaseUlf Lilleengen2023-04-272-2/+2
|
* executor: add Pender, rework Cargo features.Dario Nieuwenhuis2023-04-032-2/+2
| | | | | | | | | 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).
* stm32: use stm32-metapac from crates.io, remove stm32-data submodule.Dario Nieuwenhuis2023-03-202-2/+1
|
* Add missing files and features for basic exampleUlf Lilleengen2022-10-203-3/+44
|
* all Cargo.toml: Add license to all crate Cargo.toml fileschrysn2022-10-075-0/+5
| | | | Closes: https://github.com/embassy-rs/embassy/issues/1002
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-183-3/+4
|
* Remove HAL initialization from #[embassy::main] macro.Dario Nieuwenhuis2022-08-172-4/+5
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-295-9/+9
|
* Add env DEFMT_LOG=trace to all examples.Dario Nieuwenhuis2022-06-182-0/+6
|
* Run rustfmt.Dario Nieuwenhuis2022-06-125-51/+21
|
* Add documentation about the different embassy abstraction layersUlf Lilleengen2022-02-2310-0/+307
| | | | | The guide demonstrates the functionality offered by each layer in Embassy, using code examples.
* embassy, embassy-nrf: add `nightly` Cargo feature to gate nightly-only features.Dario Nieuwenhuis2022-02-121-2/+2
|
* nrf/gpio: add infallible inherent methods, remove some duplication.Dario Nieuwenhuis2021-12-201-3/+2
| | | | This implements Input and Output using FlexPin, to avoid some code duplication.
* Fix doc example compileUlf Lilleengen2021-12-102-5/+7
|
* Add doc-specific example and add it to CIUlf Lilleengen2021-12-103-0/+54
|
* Add example snippet inclusionUlf Lilleengen2021-12-101-0/+1