aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorpennae <[email protected]>2023-05-02 07:40:12 +0200
committerpennae <[email protected]>2023-05-02 07:40:12 +0200
commit3c31236c1050f98c870ec03b98bc746e6e2ab1b5 (patch)
tree56932f72d519383cf8a2dc053ec091b34ed5d4e5 /tests
parent05c36e05f9f6b1a0a36982239b2e7c697f0d3734 (diff)
rp: remove leftovers from #1414
forgot to remove these when they were no longer necessary or useful. oops.
Diffstat (limited to 'tests')
-rw-r--r--tests/rp/src/bin/uart_dma.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/rp/src/bin/uart_dma.rs b/tests/rp/src/bin/uart_dma.rs
index 92aa205c9..52f42e582 100644
--- a/tests/rp/src/bin/uart_dma.rs
+++ b/tests/rp/src/bin/uart_dma.rs
@@ -53,10 +53,6 @@ async fn main(_spawner: Spawner) {
53 let (mut tx, mut rx, mut uart) = (p.PIN_0, p.PIN_1, p.UART0); 53 let (mut tx, mut rx, mut uart) = (p.PIN_0, p.PIN_1, p.UART0);
54 let mut irq = interrupt::take!(UART0_IRQ); 54 let mut irq = interrupt::take!(UART0_IRQ);
55 55
56 // TODO
57 // nuclear error reporting. just abort the entire transfer and invalidate the
58 // dma buffer, buffered buffer, fifo etc.
59
60 // We can't send too many bytes, they have to fit in the FIFO. 56 // We can't send too many bytes, they have to fit in the FIFO.
61 // This is because we aren't sending+receiving at the same time. 57 // This is because we aren't sending+receiving at the same time.
62 { 58 {