circuitpython/tests/extmod_hardware/machine_uart_irq_rxidle.py.exp
Damien George 29b5c2207c tests/extmod_hardware/machine_uart_irq_rxidle.py: Test multiple writes.
This tests that the RXIDLE callback is called correctly after a second lot
of bytes are received.

Signed-off-by: Damien George <damien@micropython.org>
2025-07-08 13:18:13 +10:00

30 lines
392 B
Text

========
bits_per_s: 2400
write
ready
IRQ_RXIDLE: True data: b'12345678'
done
write
ready
IRQ_RXIDLE: True data: b'abcdefgh'
done
========
bits_per_s: 9600
write
ready
IRQ_RXIDLE: True data: b'12345678'
done
write
ready
IRQ_RXIDLE: True data: b'abcdefgh'
done
========
bits_per_s: 115200
write
ready
IRQ_RXIDLE: True data: b'12345678'
done
write
ready
IRQ_RXIDLE: True data: b'abcdefgh'
done