aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2023-05-02 10:07:32 +0000
committerGitHub <[email protected]>2023-05-02 10:07:32 +0000
commit5f99ccf54c1e2eebcd121a4281084fa54ee03fad (patch)
treeab873bbbe53700dbde5e9755bfa84c42edf9f2be /tests
parent6096f0cf4b5ef45b97665166be41bfd490748f40 (diff)
parent3c31236c1050f98c870ec03b98bc746e6e2ab1b5 (diff)
Merge #1422
1422: rp: remove leftovers from #1414 r=Dirbaio a=pennae forgot to remove these when they were no longer necessary or useful. oops. Co-authored-by: pennae <[email protected]>
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 {