aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/uart/mod.rs
Commit message (Expand)AuthorAgeFilesLines
* Update to embedded-io 0.7Dario Nieuwenhuis2025-12-191-0/+8
* Remove atomic-polyfillBjorn Beishline2025-11-251-5/+23
* embassy-rp: doc comment spelling passRob Wells2025-10-271-1/+1
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-12/+4
* remove line break reference from documentationMatt Bhagat-Conway2025-07-031-16/+16
* fix rustfmt in read_to_break docstringMatt Bhagat-Conway2025-07-031-1/+1
* add note about UART line breaks being different from ASCIIMatt Bhagat-Conway2025-07-031-0/+6
* Replace generic inner with argumentsMarc2025-05-021-14/+19
* Removed instance from uart typesMarc2025-05-021-127/+164
* embassy-rp: uart: Increase RX FIFO watermarkDavid Brown2025-04-071-1/+1
* Remove Peripheral trait, rename PeripheralRef->Peri.Dario Nieuwenhuis2025-03-271-97/+71
* fix(rp): use uart dreq number defined in pacibuki20032024-11-141-6/+16
* Also implement `embedded_io::Write` for `UartTx<'d, T: Instance, Blocking>`flippette2024-11-011-0/+14
* Implement `embedded_io::Write` for `Uart<'d, T: Instance, Blocking>` (#3483)flippette2024-10-311-0/+14
* rp: add constructor for tx-only blocking UARTSebastian Quilitz2024-09-161-0/+11
* Fix CI, rename private feature, address comments from dirbaio.Caleb Jamison2024-08-121-18/+18
* Handle pad isolation everywhere and in the same way.Caleb Jamison2024-08-101-4/+20
* Initial rp235x supportCaleb Jamison2024-08-081-6/+116
* Add read_to_break_with_countJomer.Dev2024-07-191-100/+155
* Correctly handle modifying LCR register after uart enableMathias2024-07-171-22/+51
* Add split_ref fn to uart, allowing a mutable reference split into RX & TX han...Mathias2024-07-171-1/+27
* fix(embassy-rp): fix drop implementation of BufferedUartRx and BufferedUartTxtact1m4n32024-05-171-4/+4
* rp: remove mod sealed.Dario Nieuwenhuis2024-04-051-31/+24
* fix minor clippy lints in embassy_rpRafael Bachmann2024-03-181-1/+1
* Use saturating_sub to make sure we don't overflowJomer.Dev2024-01-291-2/+2
* A rebase ate my doc comment!James Munns2024-01-191-0/+4
* Fun Learning about the RP2040 UART impl!James Munns2024-01-191-40/+41
* Debugging RSRJames Munns2024-01-191-48/+80
* A little more cleanupJames Munns2024-01-191-1/+4
* Update with more docs and less panicsJames Munns2024-01-191-23/+95
* Add a basic "read to break" functionJames Munns2024-01-191-0/+88
* docs: document all embassy-rp public apisUlf Lilleengen2023-12-191-1/+2
* docs: document spi, rtc and rest of uart for embassy-rpUlf Lilleengen2023-12-191-2/+46
* docs: embassy-rp rustdoc and refactoringUlf Lilleengen2023-12-191-0/+4
* Fix nb on rp uartJames Munns2023-12-181-3/+5
* Remove nightly and unstable-traits features in preparation for 1.75.Dario Nieuwenhuis2023-11-291-130/+114
* time: Update examples, tests, and other code to use new Timer::after_x conven...Adam Greig2023-10-151-2/+2
* Update embedded-hal to 1.0.0-rc.1 (#1783)Dario Nieuwenhuis2023-08-161-29/+9
* rp: rename gpio::Pin::io to gpio::Pin::gpiopennae2023-07-311-4/+4
* Rename embassy-hal-common to embassy-hal-internal, document it's for internal...Dario Nieuwenhuis2023-07-281-1/+1
* rp: update rp-pac.Dario Nieuwenhuis2023-06-161-165/+142
* Make interrupt module more standard.Dario Nieuwenhuis2023-06-081-5/+5
* cortex-m: remove owned interrupts.Dario Nieuwenhuis2023-06-011-8/+6
* Fix return definitionAlpha3__02023-05-251-2/+2
* Implement eh 0.2.* serial::Write for Uart/UartTxAlpha3__02023-05-251-0/+38
* rp: remove take!, add bind_interrupts!pennae2023-05-151-41/+60
* Fix some typosDirk Stolle2023-05-081-2/+2
* rp: remove leftovers from #1414pennae2023-05-021-5/+3
* rp/uart: report errors from dma receivepennae2023-05-011-13/+138
* rp/uart: extract fifo draining from blocking_readpennae2023-05-011-23/+27