aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32h7
Commit message (Collapse)AuthorAgeFilesLines
* Bump executor crate version to 0.3.0Dániel Buga2023-08-231-1/+1
|
* Merge pull request #1763 from rubdos/sender-receiver-with-ctxDario Nieuwenhuis2023-08-221-1/+1
|\ | | | | | | Refactor Channel/Sender/Receiver poll methods
| * Deprecate *recv* in favor of *receive*Ruben De Smet2023-08-221-1/+1
| |
* | Update embedded-hal to 1.0.0-rc.1 (#1783)Dario Nieuwenhuis2023-08-161-2/+2
|/
* Update to embedded-io 0.5 (#1752)Dario Nieuwenhuis2023-08-073-5/+5
|
* Fix probe chip type in stm32h7 exampleJulian2023-07-311-1/+1
|
* Merge pull request #1606 from JcBernack/rng-updateDario Nieuwenhuis2023-07-303-5/+14
|\ | | | | | | STM32: RNG update
| * stm32/rng: use bind_interrupts!.Dario Nieuwenhuis2023-07-313-5/+14
| |
* | Fix format in stm32 SPI examplesbofh2023-07-302-18/+2
| |
* | Fix more stm32 SPI examplesbofh2023-07-302-4/+8
|/
* stm32/pwm: add output type controlxoviat2023-07-291-1/+2
|
* remove memory.x files for other stm32 examplesJuliDi2023-07-281-1/+1
|
* add dac-dma example for h7, remove memory.xJuliDi2023-07-283-6/+141
|
* stm32/timer: merge pwm module into timer. (#1703)Dario Nieuwenhuis2023-07-282-3/+3
| | | | The traits there are applicable to timer use cases other than PWM. It doesn't make sense to keep them separated.
* Merge pull request #1676 from adamgreig/fix-dac-exampleDario Nieuwenhuis2023-07-241-1/+1
|\ | | | | | | stm32: Fix DAC examples
| * stm32: fix DAC examplesAdam Greig2023-07-221-1/+1
| | | | | | | | | | | | | | | | The DAC driver defaults to enabling the channel trigger, but leaves it at the default value of TIM6 TRGO, then performs a software trigger after writing the new output value. We could change the trigger selection to software trigger, but for this example it's simpler to just disable the trigger.
* | Add notes about setting chip name correctly for examples.Adam Greig2023-07-221-1/+2
|/
* stm32/eth: add set_poll_intervalxoviat2023-07-152-2/+2
|
* stm32/eth: impl. poll intervalxoviat2023-07-152-2/+2
|
* Release embassy-time v0.1.2Dario Nieuwenhuis2023-07-061-1/+1
|
* update embedded-hal crates.Dario Nieuwenhuis2023-07-041-2/+2
|
* Merge pull request #1565 from JuliDi/mainDario Nieuwenhuis2023-06-291-4/+5
|\ | | | | | | Implement DMA for DAC on STM32
| * Update DAC examples, add DAC + DMA exampleJuliDi2023-06-281-4/+5
| |
* | Update probe-rs-cli -> probe-rsDario Nieuwenhuis2023-06-291-1/+1
| |
* | stm32/otg: add VBUS detection.Dario Nieuwenhuis2023-06-271-1/+3
|/ | | | Fixes #1442.
* stm32: update stm32-metapac.Dario Nieuwenhuis2023-06-192-34/+24
|
* Remove embassy-cortex-m crate, move stuff to embassy-hal-common.Dario Nieuwenhuis2023-06-091-1/+1
|
* net: Support dual stack IPRuben De Smet2023-06-072-4/+4
|
* Rename StaticConfig to StaticConfigV4Ruben De Smet2023-06-062-2/+2
|
* Use make_static! from static-cell v1.1Dario Nieuwenhuis2023-06-013-27/+17
|
* Fix examplesRasmus Melchior Jacobsen2023-05-251-5/+5
|
* Let Flash<Async/Blocking> be a thingRasmus Melchior Jacobsen2023-05-251-1/+1
|
* Align with new bind_interruptRasmus 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-249-31/+56
| | | | 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-1/+1
| | | | | - 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
|
* Update embedded-hal crates.Dario Nieuwenhuis2023-04-061-2/+2
|
* 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-083-3/+3
|
* fix h7 examplesDario Nieuwenhuis2023-02-101-1/+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).
* add missing copy of icmpv6 checksumUlf Lilleengen2023-01-241-1/+1
| | | | add proto-ipv6 feature to stm32h7 example to catch issues in CI
* net: allocate space for 2 sockets, needed for dhcp.Dario Nieuwenhuis2023-01-192-2/+2
|