aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32f7
Commit message (Collapse)AuthorAgeFilesLines
* Bump executor crate version to 0.3.0Dániel Buga2023-08-231-1/+1
|
* Update to embedded-io 0.5 (#1752)Dario Nieuwenhuis2023-08-072-2/+2
|
* Merge remote-tracking branch 'origin/main' into bxcan_timestampchemicstry2023-07-314-54/+9
|\
| * stm32/rng: use bind_interrupts!.Dario Nieuwenhuis2023-07-311-2/+4
| |
| * remove memory.x files for other stm32 examplesJuliDi2023-07-283-52/+2
| |
| * 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.
* | stm32/can: implement proper RX timestampschemicstry2023-07-251-2/+2
|/
* Add notes about setting chip name correctly for examples.Adam Greig2023-07-221-1/+2
|
* stm32/eth: add set_poll_intervalxoviat2023-07-151-1/+1
|
* stm32/eth: impl. poll intervalxoviat2023-07-151-1/+1
|
* Merge pull request #1624 from embassy-rs/release-embassy-time-v0.1.2Dario Nieuwenhuis2023-07-051-1/+1
|\ | | | | | | Release embassy-time v0.1.2
| * Release embassy-time v0.1.2Dario Nieuwenhuis2023-07-061-1/+1
| |
* | Merge pull request #1578 from schphil/can-splitxoviat2023-07-051-0/+66
|\ \ | |/ |/| | | stm32 can split method
| * remove unused imports from examplePhilipp Scheff2023-07-031-4/+1
| |
| * allow deed code can rx & clippyPhilipp Scheff2023-07-031-7/+7
| |
| * fmtPhilipp Scheff2023-07-031-6/+10
| |
| * add as_mut & set loopback true in examplePhilipp Scheff2023-06-221-2/+4
| |
| * add stm32f7 can examplePhilipp Scheff2023-06-221-0/+63
| |
* | Update probe-rs-cli -> probe-rsDario Nieuwenhuis2023-06-291-2/+2
| |
* | stm32/otg: add VBUS detection.Dario Nieuwenhuis2023-06-271-1/+3
|/ | | | Fixes #1442.
* Remove embassy-cortex-m crate, move stuff to embassy-hal-common.Dario Nieuwenhuis2023-06-091-1/+1
|
* Merge branch 'main' into v4-optionalDario Nieuwenhuis2023-06-081-2/+1
|\
| * Make interrupt module more standard.Dario Nieuwenhuis2023-06-081-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | - Move typelevel interrupts to a special-purpose mod: `embassy_xx::interrupt::typelevel`. - Reexport the PAC interrupt enum in `embassy_xx::interrupt`. This has a few advantages: - The `embassy_xx::interrupt` module is now more "standard". - It works with `cortex-m` functions for manipulating interrupts, for example. - It works with RTIC. - the interrupt enum allows holding value that can be "any interrupt at runtime", this can't be done with typelevel irqs. - When "const-generics on enums" is stable, we can remove the typelevel interrupts without disruptive changes to `embassy_xx::interrupt`.
* | net: Support dual stack IPRuben De Smet2023-06-071-2/+2
| |
* | Rename StaticConfig to StaticConfigV4Ruben De Smet2023-06-061-1/+1
|/
* Use make_static! from static-cell v1.1Dario Nieuwenhuis2023-06-012-14/+9
|
* Fix examplesRasmus Melchior Jacobsen2023-05-251-5/+5
|
* Let Flash<Async/Blocking> be a thingRasmus Melchior Jacobsen2023-05-251-2/+2
|
* Align examplesRasmus Melchior Jacobsen2023-05-251-6/+6
|
* Align examplesRasmus Melchior Jacobsen2023-05-251-3/+2
|
* stm32: move to bind_interruptsxoviat2023-05-244-13/+24
| | | | disable lora functionality for now
* net: do not use smoltcp Instant/Duration in public API.Dario Nieuwenhuis2023-05-151-1/+1
|
* Fix some typosDirk Stolle2023-05-081-1/+1
|
* Bump versions preparing for -macros and -executor releaseUlf Lilleengen2023-04-271-1/+1
|
* Switch from probe-run to probe-rs-cli.Dario Nieuwenhuis2023-04-261-2/+2
| | | | | - probe-run screwed up the last release 2 weeks ago and it's still not fixed (issue 391). Doesn't look well maintained. - Even when it's not broken, it lags behind probe-rs-cli in new chips support because it's slow in updating probe-rs.
* enable inline-asm feature for cortex-m in examplespennae2023-04-181-1/+1
| | | | | | inline assembly is supported since rust 1.59, we're way past that. enabling this makes the compiled code more compact, and on rp2040 even decreses memory usage by not needing thunks in sram.
* Release embassy-sync v0.2.0Dario Nieuwenhuis2023-04-131-1/+1
|
* Align flash examplesRasmus Melchior Jacobsen2023-04-051-2/+2
|
* 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).
* Fix examples broken by the macro fix.Dario Nieuwenhuis2023-03-082-4/+2
|
* stm32/sdmmc: Implement proper clock configurationchemicstry2023-02-231-0/+1
|
* usb: unify ControlHandler+DeviceStateHandler, route all control requests to ↵Dario Nieuwenhuis2023-02-081-1/+0
| | | | | | | | all handlers. - Allows classes to handle vendor requests. - Allows classes to use a single handler for multiple interfaces. - Allows classes to access the other events (previously only `reset` was available).
* net: allocate space for 2 sockets, needed for dhcp.Dario Nieuwenhuis2023-01-191-1/+1
|
* Add smoltcp dhcp socket configurationPaweł Jan Czochański2023-01-191-8/+3
|
* stm32 otg: add examples.chemicstry2023-01-112-0/+108
|
* net: split driver trait to a separate crate.Dario Nieuwenhuis2022-12-261-1/+1
|
* net: remove unused pool-x featuresDario Nieuwenhuis2022-12-261-1/+1
|
* stm32: rename feature `net` to `embassy-net`.Dario Nieuwenhuis2022-12-131-1/+1
| | | | | | The eth code is always built and available, but has no own API (other than the embassy-net Device impl) to rx/tx packets. We could add this API in the future, so the feature only means "embassy-net support".
* stm32/eth_v1: update to new embassy-net trait, remove PeripheralMutex.Dario Nieuwenhuis2022-12-131-25/+25
|
* Bump defmt-rtt to 0.4Dario Nieuwenhuis2022-11-291-1/+1
|