| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | rp/uart: report errors from dma receive | pennae | 2023-05-01 | 1 | -10/+228 |
| | | |||||
| * | rp/uart: report errors from buffered uart | pennae | 2023-05-01 | 1 | -20/+229 |
| | | | | | | | | | | this reports errors at the same location the blocking uart would, which works out to being mostly exact (except in the case of overruns, where one extra character is dropped). this is actually easier than going nuclear in the case of errors and nuking both the buffer contents and the rx fifo, both of which are things we'd have to do in addition to what's added here, and neither are needed for correctness. | ||||
| * | tests/rp: test error conditions for uart | pennae | 2023-05-01 | 1 | -11/+148 |
| | | |||||
| * | tests/rp: fix buffered uart test | pennae | 2023-05-01 | 1 | -3/+3 |
| | | | | | | | the rp uart receive fifo is 32 entries deep, so the 31 byte test data fits into it without needing any buffering. extend to 48 bytes to fill the entire fifo and the 16 byte test buffer. | ||||
| * | rp: add PWM api | pennae | 2023-04-23 | 1 | -0/+142 |
| | | |||||
| * | rp: hook up softfloat rom intrinsics | pennae | 2023-04-19 | 1 | -0/+53 |
| | | | | | | | rp-hal has done this very well already, so we'll just copy their entire impl again. only div.rs needed some massaging because our sio access works a little differently, everything else worked as is. | ||||
| * | fix: spi transfer bug and additions to test | Lachezar Lechev | 2023-03-26 | 1 | -3/+23 |
| | | | | | Signed-off-by: Lachezar Lechev <[email protected]> | ||||
| * | chore: add spi_async tests for uneven buffers | Lachezar Lechev | 2023-03-24 | 1 | -4/+40 |
| | | | | | Signed-off-by: Lachezar Lechev <[email protected]> | ||||
| * | Add HIL test for into_buffered uart on embassy-rp | Mathias | 2023-03-14 | 1 | -0/+54 |
| | | |||||
| * | Refactor after review | kalkyl | 2022-12-13 | 1 | -0/+47 |
| | | |||||
| * | rp: add OutputOpenDrain input test. | Dario Nieuwenhuis | 2022-12-06 | 1 | -3/+25 |
| | | |||||
| * | rp/uart: use lockfree ringbuffer. | Dario Nieuwenhuis | 2022-11-25 | 1 | -8/+5 |
| | | | | | This gets rid of another PeripheralMutex usage. | ||||
| * | Add delay to flash test to allow time to parse RTT header | Mathias | 2022-10-27 | 1 | -0/+7 |
| | | |||||
| * | Remove unused imports from test | Mathias | 2022-10-27 | 1 | -1/+0 |
| | | |||||
| * | Add flash example & flash HIL test | Mathias | 2022-10-26 | 1 | -0/+48 |
| | | |||||
| * | Fix bufferedUart read and write tests | Mathias | 2022-09-27 | 1 | -4/+5 |
| | | |||||
| * | Extend buffered-uart test to transmit 32 bytes | Mathias | 2022-09-27 | 1 | -2/+8 |
| | | |||||
| * | Add HIL test for bufferedUart | Mathias | 2022-09-26 | 1 | -0/+37 |
| | | |||||
| * | Replace futures::future::join -> embassy_futures::join::join. | Dario Nieuwenhuis | 2022-09-22 | 1 | -1/+1 |
| | | |||||
| * | Cleanup examples | Henrik Alsér | 2022-09-01 | 2 | -4/+4 |
| | | |||||
| * | Add HIL tests | Henrik Alsér | 2022-09-01 | 2 | -0/+56 |
| | | |||||
| * | Add HIL tests of DMA & UART, and correctly set DREQ for uart DMA | Mathias | 2022-08-26 | 3 | -0/+105 |
| | | |||||
| * | Split embassy-time from embassy-executor. | Dario Nieuwenhuis | 2022-08-18 | 2 | -3/+3 |
| | | |||||
| * | Remove HAL initialization from #[embassy::main] macro. | Dario Nieuwenhuis | 2022-08-17 | 2 | -4/+4 |
| | | |||||
| * | Split embassy crate into embassy-executor, embassy-util. | Dario Nieuwenhuis | 2022-07-29 | 2 | -5/+5 |
| | | |||||
| * | Add embedded_hal_async support for embassy-rp | Daniel Bevenius | 2022-07-14 | 1 | -0/+148 |
| | | | | | | This commit adds support for embedded-hal-async to the Embassy Raspberry PI crate. | ||||
| * | rp: add GPIO HIL test. | Dario Nieuwenhuis | 2022-07-09 | 1 | -0/+192 |
