aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32f7
Commit message (Collapse)AuthorAgeFilesLines
...
* WIP embassy-net v2Dario Nieuwenhuis2022-05-252-96/+84
|
* Merge #776bors[bot]2022-05-191-0/+26
|\ | | | | | | | | | | | | | | 776: Automatically set ADC clock prescaler on v2 ADC to respect max frequency r=Dirbaio a=matoushybl Co-authored-by: Matous Hybl <[email protected]>
| * Automatically set ADC clock prescaler on v2 ADC to respect max frequencyMatous Hybl2022-05-181-0/+26
| |
* | Update embedded-io to 0.3Dario Nieuwenhuis2022-05-191-1/+1
|/
* Merge #752bors[bot]2022-05-062-4/+4
|\ | | | | | | | | | | | | | | | | | | | | 752: Replace embassy::io with embedded_io. r=Dirbaio a=Dirbaio TODO: - [x] Release embedded-io on crates.io - [x] Remove git dep Co-authored-by: Dario Nieuwenhuis <[email protected]>
| * Replace embassy::io with embedded_io.Dario Nieuwenhuis2022-05-072-4/+4
| |
* | Add F7 flash and bootloader supportMatous Hybl2022-05-062-0/+60
|/
* embassy-stm32/eth: convert LAN8742 driver to generic SMI driverDavid Lenfesty2022-04-301-4/+4
| | | | | | | | SMI Ethernet PHYs all share a common base set of registers that can do 90% of all tasks. The LAN8742 driver used some vendor-specific registers to check link negotiation status, but the need for that was debatable, so I migrated it to a generic driver instead, anybody who wants extra functionality can copy it and impl their own on top of it.
* net: auto-enable defmt in smoltcp using namespaced features.Dario Nieuwenhuis2022-04-131-1/+1
|
* Use embassy/defmt-timestamp-uptime in all examples.Dario Nieuwenhuis2022-04-029-55/+32
|
* Formatchemicstry2022-03-171-1/+1
|
* Cleanupchemicstry2022-03-161-1/+2
|
* Add F7 examplechemicstry2022-03-161-0/+43
|
* stm32: add rust stable supportDario Nieuwenhuis2022-02-121-1/+1
|
* stm32: Add standard crate-wide macros for pin/dma traits, switch all drivers ↵Dario Nieuwenhuis2022-02-101-3/+4
| | | | to use them.
* traits: migrate Delay to embedded-hal 1.0+async, remove Rng and Flash.Dario Nieuwenhuis2022-01-271-1/+0
|
* stm32: add `time-driver-any` cargo feature that automatically picks one ↵Dario Nieuwenhuis2022-01-241-1/+1
| | | | available timer.
* stm32/usart: expose all functionality as inherent methods.Dario Nieuwenhuis2022-01-191-1/+0
|
* stm32/exti: expose all functionality as inherent methods.Dario Nieuwenhuis2022-01-191-1/+0
|
* stm32/gpio: expose all functionality as inherent methods.Dario Nieuwenhuis2022-01-192-9/+7
|
* Make exti an optional featureUlf Lilleengen2022-01-121-2/+2
| | | | | * Add embassy-stm32 build with exti * Add exti to examples
* Review changesRobert Walker2021-12-291-21/+5
|
* Added and tested the usart dma example for stm32f767zi using aRobert Walker2021-12-281-0/+46
| | | | Nucleo-f767zi board.
* Use smoltcp 0.8.0 from crates.io.Matous Hybl2021-12-121-2/+1
|
* Use smoltcp revision from its master branch.Matous Hybl2021-12-091-1/+1
|
* Fix build examples with defmt.Dario Nieuwenhuis2021-12-061-0/+6
|
* examples: remove unused deps.Dario Nieuwenhuis2021-11-292-4/+1
|
* net: don't depend directly on smoltcp outside embassy-netDario Nieuwenhuis2021-11-241-12/+0
|
* Remove unused depsDario Nieuwenhuis2021-11-151-1/+0
|
* Further cargo muckings for smol/defmt.Bob McWhirter2021-11-151-2/+2
|
* Adjust all examples to defmt 0.3.Bob McWhirter2021-11-151-17/+6
|
* Add v1c ethernet driver for the STM32F7 family.Matous Hybl2021-11-103-2/+156
|
* Replace rustflags with build.rs extra-link-args.Dario Nieuwenhuis2021-11-072-12/+4
| | | | | | | | | | | | 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.
* Initial support for STM32F767ZI.Matous Hybl2021-10-269-0/+240