aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32l4/src/bin/usart.rs
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Run rustfmt.Dario Nieuwenhuis2022-06-121-3/+1
|
* 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-4/+3
|
* 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
|
* examples: Consistently use unwrap! in favor of .unwrap()Ben Gamari2021-08-051-3/+3
| | | | | Unfortunately errors from `embedded_graphics` and `core` doesn't provide the necessary instances currently.
* Update nightly, remove removed features.Dario Nieuwenhuis2021-08-041-2/+0
|
* Rename bread -> read_blockingUlf Lilleengen2021-08-041-1/+1
|
* Add uart::Read DMA-based implementationUlf Lilleengen2021-08-031-1/+1
| | | | * Rename existing read() to bread() (blocking)
* stm32l4: Cleanup examplesTimo Kröger2021-07-291-11/+8
| | | | | * Use `cortex_m_rt::entry` for sync examples * Use `Dbgmcu::enable_all()` everywhere
* stm32/examples: cleanup L4Dario Nieuwenhuis2021-07-241-47/+14
|
* Enable SYSCFG clock in `exti::init()`Timo Kröger2021-07-241-4/+0
|
* stm32: No need to enable GPIO clocks manuallyTimo Kröger2021-07-231-9/+0
|
* stm32/dma: impl all variantsDario Nieuwenhuis2021-07-161-1/+1
|
* stm32l4/examples: remove old-pac uses.Dario Nieuwenhuis2021-07-151-38/+32
|
* Fix more warnings and examples.Bob McWhirter2021-07-141-1/+2
|
* Checkpoint DMAMUX channel setup.Bob McWhirter2021-07-131-4/+0
|
* Stub in the DMA bits that aren't yet there.Bob McWhirter2021-07-011-1/+9
|
* Add L4+ example for USART.Bob McWhirter2021-07-011-0/+89