aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGhaith Oueslati <[email protected]>2023-05-02 12:25:43 +0100
committerGitHub <[email protected]>2023-05-02 12:25:43 +0100
commit0107f83b53907be7c284c6a983433c9d55b593cd (patch)
tree1e039633687e18c95cea547539764cd2423f8215 /tests
parentbab30a7e876e0c7f98e1c1f39a7d2494de5daece (diff)
parent5f99ccf54c1e2eebcd121a4281084fa54ee03fad (diff)
Merge branch 'embassy-rs:master' into tl_mbox
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 {