aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32h7/src/bin/camera.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-1/+1
|
* stm32: add config to MCO to control the drive strength.Daniel Nilsson2025-10-011-2/+9
|
* rustfmtSüha Ünüvar2025-08-081-9/+1
|
* i2c examplesSüha Ünüvar2025-08-081-2/+0
|
* Fix warnings in recent nightly.Dario Nieuwenhuis2024-03-201-2/+2
|
* ci: use beta, add secondary nightly ci.Dario Nieuwenhuis2023-12-211-1/+0
|
* stm32/i2c: add async, dual interrupt scaffolding.Dario Nieuwenhuis2023-11-241-1/+2
|
* stm32/rcc: misc cleanups.Dario Nieuwenhuis2023-10-231-3/+3
|
* time: Update examples, tests, and other code to use new Timer::after_x ↵Adam Greig2023-10-151-6/+6
| | | | convenience methods
* stm32/rcc: use PLL enums from PAC.Dario Nieuwenhuis2023-10-091-4/+4
|
* Merge pull request #2018 from jamesmunns/add-derivesDario Nieuwenhuis2023-10-071-1/+1
|\ | | | | | | Add some uncontroversial derives to Error types
| * Add some uncontroversial derives to Error typesJames Munns2023-10-061-1/+1
| |
* | stm32: implement MCO for all chips.Dario Nieuwenhuis2023-10-071-2/+2
|/
* stm32/rcc: unify h5 and h7.Dario Nieuwenhuis2023-09-211-10/+23
|
* stm32: move to bind_interruptsxoviat2023-05-241-6/+8
| | | | disable lora functionality for now
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-181-3/+3
|
* examples Remove the `fn config()` idiom.Dario Nieuwenhuis2022-08-171-14/+9
| | | | | It was only useful for doing #[embassy_executor::main(config = "config()")]`. Now that it's gone, it makes more sense to build the config in main directly.
* Remove HAL initialization from #[embassy::main] macro.Dario Nieuwenhuis2022-08-171-3/+4
|
* Implement I2C pullup configurationchemicstry2022-08-091-1/+10
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-291-4/+4
|
* embassy-stm32: Simplify timeGrant Miller2022-07-101-9/+9
| | | | | | | | | | - Remove unused `MilliSeconds`, `MicroSeconds`, and `NanoSeconds` types - Remove `Bps`, `KiloHertz`, and `MegaHertz` types that were only used for converting to `Hertz` - Replace all instances of `impl Into<Hertz>` with `Hertz` - Add `hz`, `khz`, and `mhz` methods to `Hertz`, as well as free function shortcuts - Remove `U32Ext` extension trait
* Run rustfmt.Dario Nieuwenhuis2022-06-121-31/+9
|
* Use embassy/defmt-timestamp-uptime in all examples.Dario Nieuwenhuis2022-04-021-12/+1
|
* stm32: Remove OptionalPinDario Nieuwenhuis2022-02-101-27/+6
| | | | | | | | | The idea behind OptionalPin has a few problems: - you need to impl the signal traits for NoPin which is a bit weird https://github.com/embassy-rs/embassy/blob/master/embassy-stm32/src/dcmi.rs#L413-L416 - you can pass any combination of set/unset pins, which needs checking at runtime https://github.com/embassy-rs/embassy/blob/master/embassy-stm32/src/dcmi.rs#L130 The replacement is to do multiple `new` constructors for each combination of pins you want to take.
* Support unstable-trait feature for stm32Ulf Lilleengen2022-01-261-1/+1
|
* stm32/gpio: expose all functionality as inherent methods.Dario Nieuwenhuis2022-01-191-3/+2
|
* stm32h7/rcc: remove unneeded DMA enable settings.Dario Nieuwenhuis2022-01-041-2/+0
| | | | These are automatically enabled by dma::init().
* Add DCMI example.Matous Hybl2021-12-091-0/+339