aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32h7/src/bin/usart_dma.rs
Commit message (Collapse)AuthorAgeFilesLines
* executor: return error when creating the spawntoken, not when spawning.Dario Nieuwenhuis2025-08-291-1/+1
|
* stm32/usart: remove DMA generic params.Dario Nieuwenhuis2024-04-161-2/+1
|
* ci: use beta, add secondary nightly ci.Dario Nieuwenhuis2023-12-211-1/+0
|
* stm32/usart: return error instead of panicking on bad baudrate.Dario Nieuwenhuis2023-09-261-1/+1
|
* stm32: move to bind_interruptsxoviat2023-05-241-3/+6
| | | | disable lora functionality for now
* stm32: Add support for read_until_idle on UARTGuillaume MICHEL2022-10-261-1/+3
|
* Remove Forever, switch to static_cell.Dario Nieuwenhuis2022-08-221-3/+3
|
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-181-1/+1
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-291-3/+3
|
* Run rustfmt.Dario Nieuwenhuis2022-06-121-4/+3
|
* Use embassy/defmt-timestamp-uptime in all examples.Dario Nieuwenhuis2022-04-021-3/+3
|
* stm32/usart: expose all functionality as inherent methods.Dario Nieuwenhuis2022-01-191-1/+0
|
* Remove trait_alias, allow(incomplete_features).Dario Nieuwenhuis2021-09-031-2/+0
| | | | trait_alias seems unused. no idea why it's there.
* stm32: move dbgmcu stuff to toplevel config setting, defaulting to true.Dario Nieuwenhuis2021-08-191-5/+0
|
* time: replace dyn clock/alarm with a global Driver traitDario Nieuwenhuis2021-08-051-11/+0
|
* Update nightly, remove removed features.Dario Nieuwenhuis2021-08-041-2/+0
|
* Enhance Rcc configuration to be more fluentish.Bob McWhirter2021-08-031-18/+0
| | | | Clean up H7 examples to remove all vegan HALs and PACs.
* stm32: No need to enable GPIO clocks manuallyTimo Kröger2021-07-231-4/+3
|
* Auto-enable all GPIOs during init().Bob McWhirter2021-07-231-12/+0
|
* Add a `Dbgmcu` struct capable of enabling all relevant DBGMCU.cr fields.Bob McWhirter2021-07-221-7/+4
| | | | | | | | | | | | | Includes the addition of a `dbgmcu!(...)` macro table which currently takes the form of (cr, $fn_name:ident) where `$fn_name` is something like `set_dbgsleep_d1` etc. The method is unsafe, since it's performing unsafe PAC operations. Two examples modified to demonstrate its usage.
* stm32/examples: update DMA channel namesDario Nieuwenhuis2021-07-171-1/+1
|
* Get DMA on H7 working, add usart_dma example for H7.Bob McWhirter2021-07-161-0/+100