| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Rustfmt for edition 2024. | Dario Nieuwenhuis | 2025-10-06 | 1 | -1/+1 |
| | | |||||
| * | stm32/dac: remove DMA generic params. | Dario Nieuwenhuis | 2025-03-25 | 1 | -2/+1 |
| | | |||||
| * | stm32: autogenerate mux config for all chips. | Dario Nieuwenhuis | 2024-03-01 | 1 | -1/+1 |
| | | |||||
| * | ci: use beta, add secondary nightly ci. | Dario Nieuwenhuis | 2023-12-21 | 1 | -1/+0 |
| | | |||||
| * | STM32 DAC: Rework DAC driver, support all families. | Adam Greig | 2023-11-25 | 1 | -3/+2 |
| | | |||||
| * | stm32/rcc: misc cleanups. | Dario Nieuwenhuis | 2023-10-23 | 1 | -3/+4 |
| | | |||||
| * | stm32/rcc: use PLL enums from PAC. | Dario Nieuwenhuis | 2023-10-09 | 1 | -7/+7 |
| | | |||||
| * | stm32/rcc: unify h5 and h7. | Dario Nieuwenhuis | 2023-09-21 | 1 | -4/+28 |
| | | |||||
| * | stm32: fix DAC examples | Adam Greig | 2023-07-22 | 1 | -1/+1 |
| | | | | | | | | | The DAC driver defaults to enabling the channel trigger, but leaves it at the default value of TIM6 TRGO, then performs a software trigger after writing the new output value. We could change the trigger selection to software trigger, but for this example it's simpler to just disable the trigger. | ||||
| * | Update DAC examples, add DAC + DMA example | JuliDi | 2023-06-28 | 1 | -4/+5 |
| | | |||||
| * | examples Remove the `fn config()` idiom. | Dario Nieuwenhuis | 2022-08-17 | 1 | -9/+5 |
| | | | | | | 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. | ||||
| * | embassy-stm32: Simplify time | Grant Miller | 2022-07-10 | 1 | -4/+4 |
| | | | | | | | | | | | - 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 Nieuwenhuis | 2022-06-12 | 1 | -3/+1 |
| | | |||||
| * | Use embassy/defmt-timestamp-uptime in all examples. | Dario Nieuwenhuis | 2022-04-02 | 1 | -4/+13 |
| | | |||||
| * | stm32: Remove OptionalPin | Dario Nieuwenhuis | 2022-02-10 | 1 | -2/+1 |
| | | | | | | | | | | 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. | ||||
| * | Remove trait_alias, allow(incomplete_features). | Dario Nieuwenhuis | 2021-09-03 | 1 | -2/+0 |
| | | | | | trait_alias seems unused. no idea why it's there. | ||||
| * | stm32: move dbgmcu stuff to toplevel config setting, defaulting to true. | Dario Nieuwenhuis | 2021-08-19 | 1 | -5/+0 |
| | | |||||
| * | Merge pull request #344 from bobmcwhirter/remove_builders | Dario Nieuwenhuis | 2021-08-04 | 1 | -6/+1 |
| |\ | | | | | Remove builders from Config(s) and examples. | ||||
| | * | Further work sharing config for example and removing duplicated code. | Bob McWhirter | 2021-08-04 | 1 | -16/+0 |
| | | | |||||
| | * | Formatting. | Bob McWhirter | 2021-08-04 | 1 | -3/+3 |
| | | | |||||
| | * | Remove builders from Config(s) and examples. | Bob McWhirter | 2021-08-04 | 1 | -3/+14 |
| | | | |||||
| * | | Update nightly, remove removed features. | Dario Nieuwenhuis | 2021-08-04 | 1 | -2/+0 |
| |/ | |||||
| * | Run cargo-fmt on the h7 examples. | Bob McWhirter | 2021-08-03 | 1 | -8/+6 |
| | | |||||
| * | Enhance Rcc configuration to be more fluentish. | Bob McWhirter | 2021-08-03 | 1 | -31/+12 |
| | | | | | Clean up H7 examples to remove all vegan HALs and PACs. | ||||
| * | stm32: No need to enable GPIO clocks manually | Timo Kröger | 2021-07-23 | 1 | -18/+6 |
| | | |||||
| * | fix stm32 warnings | Rukai | 2021-07-05 | 1 | -9/+6 |
| | | |||||
| * | Bring over DAC example (relies upon stm32-data update) | Bob McWhirter | 2021-06-08 | 1 | -0/+92 |
