| Commit message (Expand) | Author | Age | Files | Lines |
| * | stm32/gpio: remove generics. | Dario Nieuwenhuis | 2024-01-22 | 1 | -17/+28 |
| * | Change GPIO inherent methods back to `&self`. | Dario Nieuwenhuis | 2024-01-10 | 1 | -7/+7 |
| * | stm32: more docs. | Dario Nieuwenhuis | 2023-12-19 | 1 | -0/+1 |
| * | stm32: add some docs. | Dario Nieuwenhuis | 2023-12-18 | 1 | -7/+43 |
| * | Update embedded-hal to 1.0.0-rc.3 | Dario Nieuwenhuis | 2023-12-14 | 1 | -7/+7 |
| * | Remove nightly and unstable-traits features in preparation for 1.75. | Dario Nieuwenhuis | 2023-11-29 | 1 | -53/+36 |
| * | stm32: Don't try handle EXTI inputs above 16 | Adam Greig | 2023-11-01 | 1 | -0/+3 |
| * | stm32: avoid creating many tiny critical sections in init. | Dario Nieuwenhuis | 2023-10-12 | 1 | -1/+1 |
| * | stm32: centralize enabling pwr, syscfg, flash. | Dario Nieuwenhuis | 2023-09-25 | 1 | -5/+0 |
| * | Add get_level() to ExtiInput | Sebastian Goll | 2023-09-20 | 1 | -1/+5 |
| * | stm32: rtc/low-power cleanup | xoviat | 2023-09-15 | 1 | -0/+3 |
| * | Rename embassy-hal-common to embassy-hal-internal, document it's for internal... | Dario Nieuwenhuis | 2023-07-28 | 1 | -1/+1 |
| * | stm32: update stm32-metapac. | Dario Nieuwenhuis | 2023-06-19 | 1 | -3/+3 |
| * | Add `rt` feature to HALs, cfg out interrupt handling when not set. | Dario Nieuwenhuis | 2023-06-08 | 1 | -0/+1 |
| * | Make interrupt module more standard. | Dario Nieuwenhuis | 2023-06-08 | 1 | -2/+2 |
| * | cortex-m: remove owned interrupts. | Dario Nieuwenhuis | 2023-06-01 | 1 | -2/+2 |
| * | stm32: add H5 support. | Dario Nieuwenhuis | 2023-04-06 | 1 | -9/+9 |
| * | Add `#[must_use]` to all futures | Grant Miller | 2023-02-24 | 1 | -0/+1 |
| * | stm32: add stm32c0 support. | Dario Nieuwenhuis | 2023-01-17 | 1 | -8/+8 |
| * | Switch to async-fn-in-trait | Dario Nieuwenhuis | 2022-11-25 | 1 | -21/+15 |
| * | Update embedded-hal versions and explicitly pin | Ulf Lilleengen | 2022-09-29 | 1 | -1/+1 |
| * | Do not use cfg_if for embedded-hal-async feature gates. | Dario Nieuwenhuis | 2022-08-31 | 1 | -24/+25 |
| * | split `embassy-util` into `embassy-futures`, `embassy-sync`. | Dario Nieuwenhuis | 2022-08-22 | 1 | -1/+1 |
| * | Split embassy crate into embassy-executor, embassy-util. | Dario Nieuwenhuis | 2022-07-29 | 1 | -1/+1 |
| * | Rename Unborrowed -> PeripheralRef, Unborrow -> Peripheral | Dario Nieuwenhuis | 2022-07-23 | 1 | -4/+4 |
| * | Rename unsafe_impl_unborrow to impl_unborrow | Dario Nieuwenhuis | 2022-07-23 | 1 | -2/+2 |
| * | have adapted access to pin() and port() methods of Sealed::Pin in exti.rs ac... | [email protected] | 2022-07-10 | 1 | -5/+5 |
| * | Run rustfmt. | Dario Nieuwenhuis | 2022-06-12 | 1 | -11/+8 |
| * | Add embassy-cortex-m crate. | Dario Nieuwenhuis | 2022-06-12 | 1 | -3/+3 |
| * | stm32: Fix stm32f107 build. | Dario Nieuwenhuis | 2022-05-08 | 1 | -1/+1 |
| * | Add stm32wlexx support | Dario Nieuwenhuis | 2022-04-08 | 1 | -1/+1 |
| * | Update rust nightly, embedded-hal 1.0, embedded-hal-async. | Dario Nieuwenhuis | 2022-03-11 | 1 | -39/+24 |
| * | stm32: move macrotables to embassy-stm32 build.rs | Dario Nieuwenhuis | 2022-02-26 | 1 | -1/+1 |
| * | stm32: fix build for h7ab | Dario Nieuwenhuis | 2022-02-24 | 1 | -1/+1 |
| * | stm32: add rust stable support | Dario Nieuwenhuis | 2022-02-12 | 1 | -1/+5 |
| * | Support unstable-trait feature for stm32 | Ulf Lilleengen | 2022-01-26 | 1 | -53/+66 |
| * | stm32/exti: add wait_for_high, wait_for_low. | Dario Nieuwenhuis | 2022-01-19 | 1 | -1/+41 |
| * | stm32/exti: expose all functionality as inherent methods. | Dario Nieuwenhuis | 2022-01-19 | 1 | -7/+19 |
| * | stm32/gpio: expose all functionality as inherent methods. | Dario Nieuwenhuis | 2022-01-19 | 1 | -2/+10 |
| * | stm32: use critical_section instead of cortex_m::interrupt | Dario Nieuwenhuis | 2022-01-19 | 1 | -2/+2 |
| * | Fix missing lifetime bounds | Wilfried Chauveau | 2021-11-21 | 1 | -3/+12 |
| * | Adjust for STM32U5. | Bob McWhirter | 2021-11-02 | 1 | -8/+8 |
| * | Initial STM32F1 family support with two examples for STM32F103C8 (Blue Pill) | Mariusz Ryndzionek | 2021-09-28 | 1 | -2/+8 |
| * | embassy: Refactor module structure to remove kitchen-sink `util`. | Dario Nieuwenhuis | 2021-09-11 | 1 | -1/+2 |
| * | Add support for STM32G0 | Ben Gamari | 2021-08-20 | 1 | -7/+37 |
| * | stm32/exti: unify all versions into single impl | Dario Nieuwenhuis | 2021-08-19 | 1 | -0/+270 |
| * | Separate exti into v1 and v2 | Thales Fragoso | 2021-06-24 | 1 | -274/+0 |
| * | General clean-up and removal of dead code. | Bob McWhirter | 2021-06-03 | 1 | -26/+1 |
| * | Remove the exti_interrupts table. | Bob McWhirter | 2021-06-03 | 1 | -7/+48 |
| * | Migrate exti_irq stuff to macro tables. | Bob McWhirter | 2021-06-03 | 1 | -0/+22 |