| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Rustfmt for edition 2024. | Dario Nieuwenhuis | 2025-10-06 | 1 | -2/+2 |
| | | |||||
| * | Remove Peripheral trait, rename PeripheralRef->Peri. | Dario Nieuwenhuis | 2025-03-27 | 1 | -23/+10 |
| | | |||||
| * | Use inline const for initializing arrays. (#3567) | Dario Nieuwenhuis | 2024-11-24 | 1 | -2/+1 |
| | | |||||
| * | Fix CI, rename private feature, address comments from dirbaio. | Caleb Jamison | 2024-08-12 | 1 | -5/+8 |
| | | |||||
| * | rp: update PAC, fix CI. | Dario Nieuwenhuis | 2024-08-12 | 1 | -3/+3 |
| | | |||||
| * | Initial rp235x support | Caleb Jamison | 2024-08-08 | 1 | -9/+23 |
| | | | | | Examples have been run, but there is not yet a test suite. | ||||
| * | Use raw slices .len() method instead of unsafe hacks. | Dario Nieuwenhuis | 2024-06-13 | 1 | -21/+8 |
| | | | | | Stabilized in 1.79. | ||||
| * | rp: remove mod sealed. | Dario Nieuwenhuis | 2024-04-05 | 1 | -12/+11 |
| | | |||||
| * | Fix warnings in recent nightly. | Dario Nieuwenhuis | 2024-03-20 | 1 | -1/+1 |
| | | |||||
| * | docs: document all embassy-rp public apis | Ulf Lilleengen | 2023-12-19 | 1 | -0/+20 |
| | | | | | Enable missing doc warnings. | ||||
| * | rp: fix async spi read sometimes hanging. | Dario Nieuwenhuis | 2023-08-15 | 1 | -2/+3 |
| | | |||||
| * | Rename embassy-hal-common to embassy-hal-internal, document it's for ↵ | Dario Nieuwenhuis | 2023-07-28 | 1 | -1/+1 |
| | | | | | internal use only. (#1700) | ||||
| * | rp: update rp-pac. | Dario Nieuwenhuis | 2023-06-16 | 1 | -26/+22 |
| | | |||||
| * | 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 | -4/+4 |
| | | | | | | | | | | | | | - 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`. | ||||
| * | rp/dma: fix use-after-free read. | Dario Nieuwenhuis | 2023-06-05 | 1 | -2/+3 |
| | | |||||
| * | cortex-m: remove owned interrupts. | Dario Nieuwenhuis | 2023-06-01 | 1 | -5/+4 |
| | | |||||
| * | fix(rp): spi transfer | Lachezar Lechev | 2023-03-20 | 1 | -0/+1 |
| | | | | | Signed-off-by: Lachezar Lechev <[email protected]> | ||||
| * | Add `#[must_use]` to all futures | Grant Miller | 2023-02-24 | 1 | -0/+1 |
| | | |||||
| * | Drop rp2040-flash as dependency, as they pull in rp2040-hal for rom-data ↵ | Mathias | 2022-09-23 | 1 | -1/+1 |
| | | | | | functions, which are now part of this HAL as well | ||||
| * | Replace futures::future::poll_fn -> core::future::poll_fn. | Dario Nieuwenhuis | 2022-09-23 | 1 | -1/+1 |
| | | |||||
| * | rp: let SPI RX overflow during async write | Alex Martens | 2022-09-23 | 1 | -19/+0 |
| | | |||||
| * | rp: fix async SPI read and write | Alex Martens | 2022-09-23 | 1 | -0/+38 |
| | | |||||
| * | Fix dma | Henrik Alsér | 2022-09-01 | 1 | -6/+6 |
| | | |||||
| * | Change DMA write/read to use raw pointers | Henrik Alsér | 2022-09-01 | 1 | -6/+6 |
| | | |||||
| * | Add HIL tests of DMA & UART, and correctly set DREQ for uart DMA | Mathias | 2022-08-26 | 1 | -3/+28 |
| | | |||||
| * | Only check for ahb error in DMA | Mathias | 2022-08-23 | 1 | -7/+1 |
| | | |||||
| * | Change to using embassy-sync | Mathias | 2022-08-23 | 1 | -2/+2 |
| | | |||||
| * | Abort DMA operation when dropping a Transfer, and panic on DMA errors | Mathias | 2022-08-23 | 1 | -2/+14 |
| | | |||||
| * | Address code review comments | Mathias | 2022-08-23 | 1 | -20/+30 |
| | | |||||
| * | Fix bit checking in DMA irq | Mathias | 2022-08-19 | 1 | -1/+1 |
| | | |||||
| * | Add back public dma::copy, and correct dma incr settings for read/write | Mathias | 2022-08-19 | 1 | -17/+26 |
| | | |||||
| * | Add DMA_IRQ0 handling to Transfer | Mathias | 2022-08-19 | 1 | -1/+29 |
| | | |||||
| * | Simplify waker storage for DMA state | Mathias | 2022-08-18 | 1 | -39/+6 |
| | | |||||
| * | Don't increment read address in DMA copy from peripherals | Mathias | 2022-08-18 | 1 | -3/+9 |
| | | |||||
| * | Add DMA read + write functions | Mathias | 2022-08-18 | 1 | -8/+40 |
| | | |||||
| * | Remove unneeded NoDma struct | Mathias | 2022-08-18 | 1 | -4/+0 |
| | | |||||
| * | Attempt to implement future for DMA transfer | Mathias | 2022-08-18 | 1 | -7/+42 |
| | | |||||
| * | Stop active DMA transfer on drop | Mathias | 2022-08-18 | 1 | -9/+7 |
| | | |||||
| * | Preliminary DMA support for RP2040 | Mathias | 2022-08-18 | 1 | -34/+105 |
| | | |||||
| * | Implement remaining logic for blocking UART. async is still todo, awaiting DMA | Mathias | 2022-08-18 | 1 | -0/+6 |
| | | |||||
| * | fmt: make all macros `macro_rules` so scoping is consistent. | Dario Nieuwenhuis | 2021-06-07 | 1 | -1/+0 |
| | | |||||
| * | Fix all warnings on embassy-rp and embassy-rp-examples and | Rukai | 2021-05-20 | 1 | -2/+2 |
| | | | | | embassy-std-examples | ||||
| * | stm32: fix build, add ci | Dario Nieuwenhuis | 2021-05-17 | 1 | -3/+2 |
| | | |||||
| * | rp: add initial version | Dario Nieuwenhuis | 2021-03-29 | 1 | -0/+87 |
