Files
micropython/tests/extmod/machine_uart_irq_txidle.py
Damien George 5bafb0bf68 tests: Convert all machine.UART tests to use target_wiring.
All the existing `machine.UART` tests in extmod and extmod_hardware are
converted to use the new `target_wiring` scheme, which removes a lot of
duplicated board-specific settings.

All the existing boards that were supported by these UART tests now have
their own `target_wiring` file.  Some configurations are board specific (eg
NUCLEO_WB55) and others are port specific.

Signed-off-by: Damien George <damien@micropython.org>
2025-09-08 11:52:49 +10:00

43 lines
1.3 KiB
Python

# Test machine.UART.IRQ_TXIDLE firing after a transmission.
# Does not require any external connections.
try:
from machine import UART
UART.IRQ_TXIDLE
except (ImportError, AttributeError):
print("SKIP")
raise SystemExit
import time, sys
from target_wiring import uart_loopback_args, uart_loopback_kwargs
def irq(u):
print("IRQ_TXIDLE:", u.irq().flags() == u.IRQ_TXIDLE)
text = "Hello World" * 20
# Test that the IRQ is called after the write has completed.
for bits_per_s in (2400, 9600, 115200):
uart = UART(*uart_loopback_args, baudrate=bits_per_s, **uart_loopback_kwargs)
uart.irq(irq, uart.IRQ_TXIDLE)
# The IRQ_TXIDLE shall trigger after the message has been sent. Thus
# the test marks a time window close to the expected of the sending
# and the time at which the IRQ should have been fired.
# It is just a rough estimation of 10 characters before and
# 20 characters after the data's end.
bits_per_char = 10 # 1(startbit) + 8(bits) + 1(stopbit) + 0(parity)
start_time_us = (len(text) - 10) * bits_per_char * 1_000_000 // bits_per_s
window_ms = 20 * bits_per_char * 1_000 // bits_per_s + 1
print("write", bits_per_s)
uart.write(text)
time.sleep_us(start_time_us)
print("ready")
time.sleep_ms(window_ms)
print("done")