aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32f7
Commit message (Collapse)AuthorAgeFilesLines
...
* update release version in examples and other cratesScott Mabin2023-12-041-2/+2
|
* update embedded-storage{,-async}, remove patch.Dario Nieuwenhuis2023-12-041-1/+1
|
* Remove nightly and unstable-traits features in preparation for 1.75.Dario Nieuwenhuis2023-11-291-2/+2
|
* Update embedded-(hal,io,nal).Dario Nieuwenhuis2023-11-291-1/+1
|
* executor: release v0.3.3Dario Nieuwenhuis2023-11-151-1/+1
|
* stm32/rcc: fix pll enum naming on f4, f7.Dario Nieuwenhuis2023-11-133-5/+5
|
* Update heapless to v0.8, embedded-nal-async to v0.7Dario Nieuwenhuis2023-11-101-1/+1
|
* usb: remove msos-descriptor feature.Dario Nieuwenhuis2023-11-081-0/+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
|
* stm32/rcc: refactor f7.Dario Nieuwenhuis2023-10-184-13/+61
|
* 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-156-13/+13
| | | | convenience methods
* Release embassy-time 0.1.4Dániel Buga2023-10-121-1/+1
|
* Patch tests & examplesGabriel Górski2023-10-091-2/+1
|
* update embedded-io, embedded-nal-async.Dario Nieuwenhuis2023-10-041-1/+1
|
* stm32/adc: cleanup f1, f3, v1, and v2xoviat2023-09-271-1/+1
|
* stm32/usart: return error instead of panicking on bad baudrate.Dario Nieuwenhuis2023-09-261-1/+1
|
* stm32/rcc: unify h5 and h7.Dario Nieuwenhuis2023-09-211-1/+2
|
* feat: bump embassy-sync version to 0.3.0Ulf Lilleengen2023-09-141-1/+1
| | | | Update changelog in preparation for release
* add wait_config_up to examplesJuliDi2023-09-081-1/+4
|
* Release embassy-time v0.1.3Jesse Braham2023-08-281-1/+1
|
* 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
|