| Commit message (Expand) | Author | Age | Files | Lines |
| * | Update to embedded-io 0.7 | Dario Nieuwenhuis | 2025-12-19 | 1 | -0/+8 |
| * | Remove atomic-polyfill | Bjorn Beishline | 2025-11-25 | 2 | -8/+33 |
| * | embassy-rp: doc comment spelling pass | Rob Wells | 2025-10-27 | 1 | -1/+1 |
| * | Rustfmt for edition 2024. | Dario Nieuwenhuis | 2025-10-06 | 1 | -12/+4 |
| * | remove line break reference from documentation | Matt Bhagat-Conway | 2025-07-03 | 1 | -16/+16 |
| * | fix rustfmt in read_to_break docstring | Matt Bhagat-Conway | 2025-07-03 | 1 | -1/+1 |
| * | add note about UART line breaks being different from ASCII | Matt Bhagat-Conway | 2025-07-03 | 1 | -0/+6 |
| * | Replace generic inner with arguments | Marc | 2025-05-02 | 1 | -14/+19 |
| * | Remove some forgotten commented out code | Marc | 2025-05-02 | 1 | -2/+0 |
| * | Removed instance from uart types | Marc | 2025-05-02 | 2 | -273/+324 |
| * | embassy-rp: uart: Increase RX FIFO watermark | David Brown | 2025-04-07 | 1 | -1/+1 |
| * | BufferedUart initialization | Michael Gomez | 2025-04-04 | 1 | -2/+2 |
| * | Remove Peripheral trait, rename PeripheralRef->Peri. | Dario Nieuwenhuis | 2025-03-27 | 2 | -136/+98 |
| * | fix(rp): use uart dreq number defined in pac | ibuki2003 | 2024-11-14 | 1 | -6/+16 |
| * | Also implement `embedded_io::Write` for `UartTx<'d, T: Instance, Blocking>` | flippette | 2024-11-01 | 1 | -0/+14 |
| * | Implement `embedded_io::Write` for `Uart<'d, T: Instance, Blocking>` (#3483) | flippette | 2024-10-31 | 1 | -0/+14 |
| * | rp: add constructor for tx-only blocking UART | Sebastian Quilitz | 2024-09-16 | 1 | -0/+11 |
| * | Fix CI, rename private feature, address comments from dirbaio. | Caleb Jamison | 2024-08-12 | 1 | -18/+18 |
| * | Handle pad isolation everywhere and in the same way. | Caleb Jamison | 2024-08-10 | 1 | -4/+20 |
| * | Initial rp235x support | Caleb Jamison | 2024-08-08 | 1 | -6/+116 |
| * | Add read_to_break_with_count | Jomer.Dev | 2024-07-19 | 1 | -100/+155 |
| * | Correctly handle modifying LCR register after uart enable | Mathias | 2024-07-17 | 1 | -22/+51 |
| * | Add split_ref fn to uart, allowing a mutable reference split into RX & TX han... | Mathias | 2024-07-17 | 2 | -3/+41 |
| * | rustfmt | rafael | 2024-07-10 | 1 | -2/+2 |
| * | implement read_ready method in BufferedUart | rafael | 2024-07-10 | 1 | -0/+18 |
| * | fix(embassy-rp): fix drop implementation of BufferedUartRx and BufferedUartTx | tact1m4n3 | 2024-05-17 | 2 | -72/+82 |
| * | rp: remove mod sealed. | Dario Nieuwenhuis | 2024-04-05 | 1 | -31/+24 |
| * | Merge branch 'embassy-rs:main' into barafael/minor_clippy_lints_rp | Rafael Bachmann | 2024-03-25 | 1 | -8/+2 |
| |\ |
|
| | * | Fix warnings in recent nightly. | Dario Nieuwenhuis | 2024-03-20 | 1 | -8/+2 |
| * | | fix minor clippy lints in embassy_rp | Rafael Bachmann | 2024-03-18 | 2 | -3/+3 |
| |/ |
|
| * | Use saturating_sub to make sure we don't overflow | Jomer.Dev | 2024-01-29 | 1 | -2/+2 |
| * | A rebase ate my doc comment! | James Munns | 2024-01-19 | 1 | -0/+4 |
| * | Fun Learning about the RP2040 UART impl! | James Munns | 2024-01-19 | 1 | -40/+41 |
| * | Debugging RSR | James Munns | 2024-01-19 | 1 | -48/+80 |
| * | A little more cleanup | James Munns | 2024-01-19 | 1 | -1/+4 |
| * | Update with more docs and less panics | James Munns | 2024-01-19 | 1 | -23/+95 |
| * | Add a basic "read to break" function | James Munns | 2024-01-19 | 1 | -0/+88 |
| * | docs: document all embassy-rp public apis | Ulf Lilleengen | 2023-12-19 | 2 | -1/+3 |
| * | docs: document spi, rtc and rest of uart for embassy-rp | Ulf Lilleengen | 2023-12-19 | 1 | -2/+46 |
| * | docs: embassy-rp rustdoc and refactoring | Ulf Lilleengen | 2023-12-19 | 2 | -0/+24 |
| * | Fix nb on rp uart | James Munns | 2023-12-18 | 1 | -3/+5 |
| * | Remove nightly and unstable-traits features in preparation for 1.75. | Dario Nieuwenhuis | 2023-11-29 | 2 | -217/+192 |
| * | time: Update examples, tests, and other code to use new Timer::after_x conven... | Adam Greig | 2023-10-15 | 2 | -4/+4 |
| * | Remove a few ultra-verbose logs. | Dario Nieuwenhuis | 2023-10-03 | 1 | -2/+0 |
| * | Update embedded-hal to 1.0.0-rc.1 (#1783) | Dario Nieuwenhuis | 2023-08-16 | 2 | -52/+12 |
| * | Update to embedded-io 0.5 (#1752) | Dario Nieuwenhuis | 2023-08-07 | 1 | -13/+13 |
| * | rp: rename gpio::Pin::io to gpio::Pin::gpio | pennae | 2023-07-31 | 1 | -4/+4 |
| * | Rename embassy-hal-common to embassy-hal-internal, document it's for internal... | Dario Nieuwenhuis | 2023-07-28 | 2 | -2/+2 |
| * | rp: update rp-pac. | Dario Nieuwenhuis | 2023-06-16 | 2 | -309/+267 |
| * | Make interrupt module more standard. | Dario Nieuwenhuis | 2023-06-08 | 2 | -8/+8 |