| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Rustfmt for edition 2024. | Dario Nieuwenhuis | 2025-10-06 | 1 | -1/+1 |
| | | |||||
| * | stm32: adapt examples to timer API changes | melvdl | 2025-06-27 | 1 | -5/+5 |
| | | |||||
| * | Remove Peripheral trait, rename PeripheralRef->Peri. | Dario Nieuwenhuis | 2025-03-27 | 1 | -8/+6 |
| | | |||||
| * | stm32/gpio: refactor AfType | Jan Špaček | 2024-06-16 | 1 | -5/+5 |
| | | |||||
| * | stm32: use private_bounds for sealed traits. | Dario Nieuwenhuis | 2024-03-23 | 1 | -12/+25 |
| | | |||||
| * | stm32/timer: simplify traits, convert from trait methods to struct. | Dario Nieuwenhuis | 2024-03-23 | 1 | -16/+18 |
| | | |||||
| * | update metapac | eZio Pan | 2024-02-29 | 1 | -2/+2 |
| | | |||||
| * | ci: use beta, add secondary nightly ci. | Dario Nieuwenhuis | 2023-12-21 | 1 | -1/+0 |
| | | |||||
| * | stm32/timer: docs. | Dario Nieuwenhuis | 2023-12-19 | 1 | -5/+5 |
| | | |||||
| * | stm32/rcc: add shared code for hsi48 with crs support. | Dario Nieuwenhuis | 2023-11-05 | 1 | -1/+0 |
| | | |||||
| * | stm32/rcc: misc cleanups. | Dario Nieuwenhuis | 2023-10-23 | 1 | -3/+3 |
| | | |||||
| * | time: Update examples, tests, and other code to use new Timer::after_x ↵ | Adam Greig | 2023-10-15 | 1 | -5/+5 |
| | | | | | convenience methods | ||||
| * | enable clock first | pbert | 2023-10-12 | 1 | -1/+1 |
| | | |||||
| * | STM32: combine RccPeripherals reset() and enable() to reset_and_enable() | pbert | 2023-10-12 | 1 | -2/+1 |
| | | |||||
| * | stm32/rcc: use PLL enums from PAC. | Dario Nieuwenhuis | 2023-10-09 | 1 | -4/+4 |
| | | |||||
| * | stm32/rcc: unify h5 and h7. | Dario Nieuwenhuis | 2023-09-21 | 1 | -8/+22 |
| | | |||||
| * | stm32/timer: merge pwm module into timer. (#1703) | Dario Nieuwenhuis | 2023-07-28 | 1 | -1/+1 |
| | | | | | The traits there are applicable to timer use cases other than PWM. It doesn't make sense to keep them separated. | ||||
| * | stm32: update stm32-metapac. | Dario Nieuwenhuis | 2023-06-19 | 1 | -32/+22 |
| | | |||||
| * | Split embassy-time from embassy-executor. | Dario Nieuwenhuis | 2022-08-18 | 1 | -2/+2 |
| | | |||||
| * | examples Remove the `fn config()` idiom. | Dario Nieuwenhuis | 2022-08-17 | 1 | -6/+3 |
| | | | | | | 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 Nieuwenhuis | 2022-08-17 | 1 | -3/+4 |
| | | |||||
| * | Split embassy crate into embassy-executor, embassy-util. | Dario Nieuwenhuis | 2022-07-29 | 1 | -3/+3 |
| | | |||||
| * | Rename Unborrowed -> PeripheralRef, Unborrow -> Peripheral | Dario Nieuwenhuis | 2022-07-23 | 1 | -8/+8 |
| | | |||||
| * | Update embassy-stm32 | Dario Nieuwenhuis | 2022-07-23 | 1 | -9/+3 |
| | | |||||
| * | embassy-stm32: Simplify time | Grant Miller | 2022-07-10 | 1 | -12/+12 |
| | | | | | | | | | | | - 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 | -20/+6 |
| | | |||||
| * | Add embassy-cortex-m crate. | Dario Nieuwenhuis | 2022-06-12 | 1 | -1/+1 |
| | | | | | | | - Move Interrupt and InterruptExecutor from `embassy` to `embassy-cortex-m`. - Move Unborrow from `embassy` to `embassy-hal-common` (nothing in `embassy` requires it anymore) - Move PeripheralMutex from `embassy-hal-common` to `embassy-cortex-m`. | ||||
| * | Reexport unborrow macro in HALs | Matous Hybl | 2022-04-07 | 1 | -1/+1 |
| | | |||||
| * | Use embassy/defmt-timestamp-uptime in all examples. | Dario Nieuwenhuis | 2022-04-02 | 1 | -3/+3 |
| | | |||||
| * | stm32: Register access for timers now doesn't require self | Matous Hybl | 2022-02-28 | 1 | -15/+8 |
| | | |||||
| * | stm32: Add standard crate-wide macros for pin/dma traits, switch all drivers ↵ | Dario Nieuwenhuis | 2022-02-10 | 1 | -8/+13 |
| | | | | | to use them. | ||||
| * | 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. | ||||
| * | Port the PWM example to H7, add low-level API example implementing 32-bit PWM. | Matous Hybl | 2022-01-13 | 1 | -0/+147 |
