aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorgoueslati <[email protected]>2023-05-02 14:18:39 +0100
committergoueslati <[email protected]>2023-05-02 14:18:39 +0100
commit0c07eef3a98279d6beea22dfa8e29d4f28c8be72 (patch)
tree116892a5783ec09b5c215d4cc0995da216f9e63a /tests
parent371a80e1a2fc08aa6c4cb98326df19725b14f502 (diff)
parent0107f83b53907be7c284c6a983433c9d55b593cd (diff)
Merge branch 'tl_mbox' of https://github.com/OueslatiGhaith/embassy into tl_mbox
merge
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 {