Skip to content

Commit 1bf4b86

Browse files
committed
fixup! cpu/rp2350_riscv: move to shared rp2350_common
1 parent 5e12342 commit 1bf4b86

File tree

1 file changed

+0
-4
lines changed
  • cpu/rp2350_common/periph

1 file changed

+0
-4
lines changed

cpu/rp2350_common/periph/uart.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -225,10 +225,6 @@ void isr_handler(uint8_t num)
225225

226226
if (status & UART_UARTMIS_RXMIS_BITS) {
227227
uint32_t data = dev->UARTDR;
228-
if (data != 0) {
229-
printf("UART%u: Received data: 0x%02lx ('%c')\n", num, data,
230-
(data >= 32 && data <= 126) ? (char)data : '.');
231-
}
232228
ctx[num].rx_cb(ctx[num].arg, (uint8_t)data);
233229
}
234230
}

0 commit comments

Comments
 (0)