| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | refactor with clippy | eZio Pan | 2024-01-06 | 1 | -9/+6 |
| | | |||||
| * | impl waveform with TIM Channel | eZio Pan | 2024-01-06 | 1 | -0/+25 |
| | | |||||
| * | stm32/timer: add missing supertrait bounds. | Dario Nieuwenhuis | 2024-01-02 | 1 | -4/+7 |
| | | |||||
| * | record&restore TIM OC to it's earlier state | eZio Pan | 2023-12-29 | 1 | -0/+10 |
| | | |||||
| * | implement PWM waveform generating with DMA | eZio Pan | 2023-12-28 | 1 | -1/+17 |
| | | |||||
| * | stm32/timer: docs. | Dario Nieuwenhuis | 2023-12-19 | 1 | -24/+134 |
| | | |||||
| * | stm32: more docs. | Dario Nieuwenhuis | 2023-12-18 | 1 | -0/+3 |
| | | |||||
| * | after stm32-metapac update, TIM CR1 ARPE enum to bool | eZio Pan | 2023-12-14 | 1 | -1/+1 |
| | | |||||
| * | stm32/timer: Fix frequency off-by-one | Grant Miller | 2023-12-01 | 1 | -1/+4 |
| | | |||||
| * | Merge branch 'master' into center-align | Dion Dokter | 2023-10-20 | 1 | -3/+39 |
| |\ | |||||
| | * | STM32: timer enable_output does not take bool, but just enables the output | Ralf | 2023-10-13 | 1 | -4/+4 |
| | | | |||||
| | * | STM32: Fix regression in advanced timer to enable output of PWM signal by ↵ | Ralf | 2023-10-13 | 1 | -3/+11 |
| | | | | | | | | | partly reverting commit 74eb519 | ||||
| | * | Implemented Pwm trait from embedded_hal | randi | 2023-10-07 | 1 | -0/+28 |
| | | | |||||
| * | | Invert assert | Dion Dokter | 2023-10-20 | 1 | -1/+1 |
| | | | |||||
| * | | Added clarifying comment | Dion Dokter | 2023-10-02 | 1 | -4/+7 |
| | | | |||||
| * | | Do affect the frequency | Dion Dokter | 2023-10-02 | 1 | -3/+38 |
| | | | |||||
| * | | stm32: Add the ability to center-align timers | Dion Dokter | 2023-10-01 | 1 | -2/+47 |
| |/ | |||||
| * | rustfmt | xoviat | 2023-09-30 | 1 | -1/+1 |
| | | |||||
| * | Fix clippy error exposed by moving out of macros | Daniel Berlin | 2023-09-30 | 1 | -1/+1 |
| | | |||||
| * | Remove unused imports | Daniel Berlin | 2023-09-30 | 1 | -2/+0 |
| | | |||||
| * | Move one more method out of macros | Daniel Berlin | 2023-09-30 | 1 | -19/+17 |
| | | |||||
| * | Move trait impls out of macros | Daniel Berlin | 2023-09-30 | 1 | -346/+143 |
| | | |||||
| * | Fix small formatting issue | Daniel Berlin | 2023-09-30 | 1 | -0/+1 |
| | | |||||
| * | Fix trait inconsistency between sealed traits and implementations | Daniel Berlin | 2023-09-30 | 1 | -95/+1 |
| | | |||||
| * | Revert "Forgot set_count_direction and set_clock_division in 32 bit instance" | Daniel Berlin | 2023-09-28 | 1 | -12/+0 |
| | | |||||
| * | Forgot set_count_direction and set_clock_division in 32 bit instance | Daniel Berlin | 2023-09-28 | 1 | -0/+12 |
| | | |||||
| * | Add support for STM32 input capture filter | Daniel Berlin | 2023-09-28 | 1 | -0/+28 |
| | | |||||
| * | Add support for input capture function | Daniel Berlin | 2023-09-27 | 1 | -0/+231 |
| | | |||||
| * | Merge pull request #1845 from xoviat/qei | xoviat | 2023-08-30 | 1 | -0/+1 |
| |\ | | | | | | | stm32: add qei | ||||
| | * | stm32: implement qei | xoviat | 2023-08-30 | 1 | -0/+1 |
| | | | |||||
| * | | Stm32 timer prevent hardfault | Dion Dokter | 2023-08-30 | 1 | -0/+2 |
| |/ | |||||
| * | stm32: allow setting the PWM output polarity | Aurelien Jacobs | 2023-08-18 | 1 | -0/+49 |
| | | |||||
| * | stm32/timer: merge pwm module into timer. (#1703) | Dario Nieuwenhuis | 2023-07-28 | 1 | -25/+246 |
| | | | | | 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 | -39/+25 |
| | | |||||
| * | Make interrupt module more standard. | Dario Nieuwenhuis | 2023-06-08 | 1 | -3/+3 |
| | | | | | | | | | | | | | - Move typelevel interrupts to a special-purpose mod: `embassy_xx::interrupt::typelevel`. - Reexport the PAC interrupt enum in `embassy_xx::interrupt`. This has a few advantages: - The `embassy_xx::interrupt` module is now more "standard". - It works with `cortex-m` functions for manipulating interrupts, for example. - It works with RTIC. - the interrupt enum allows holding value that can be "any interrupt at runtime", this can't be done with typelevel irqs. - When "const-generics on enums" is stable, we can remove the typelevel interrupts without disruptive changes to `embassy_xx::interrupt`. | ||||
| * | Revert "Make advanced timer trait not require general purpose timer trait as ↵ | chemicstry | 2022-07-12 | 1 | -1/+11 |
| | | | | | | | the timers are too different." This reverts commit 4988dfe98175f5d92d896edd2b9ee774a91b28d5. | ||||
| * | embassy-stm32: Simplify time | Grant Miller | 2022-07-10 | 1 | -6/+6 |
| | | | | | | | | | | | - 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 | -7/+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`. | ||||
| * | stm32: Register access for timers now doesn't require self | Matous Hybl | 2022-02-28 | 1 | -18/+18 |
| | | |||||
| * | stm32: move macrotables to embassy-stm32 build.rs | Dario Nieuwenhuis | 2022-02-26 | 1 | -1/+1 |
| | | |||||
| * | Make advanced timer trait not require general purpose timer trait as the ↵ | Matous Hybl | 2022-01-18 | 1 | -9/+1 |
| | | | | | timers are too different. | ||||
| * | Add low level timer API. | Matous Hybl | 2022-01-13 | 1 | -0/+224 |
