mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 11:40:18 +01:00
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>
38 lines
1019 B
Python
38 lines
1019 B
Python
# Test machine.UART.IRQ_BREAK firing after a break is received.
|
|
#
|
|
# IMPORTANT: This test requires hardware connections: the UART TX and RX
|
|
# pins must be wired together.
|
|
|
|
try:
|
|
from machine import UART
|
|
|
|
UART.IRQ_BREAK
|
|
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_BREAK:", bool(u.irq().flags() & u.IRQ_BREAK), "data:", u.read(1))
|
|
|
|
|
|
# Test that the IRQ is called for each break received.
|
|
for bits_per_s in (2400, 9600, 57600):
|
|
uart = UART(*uart_loopback_args, baudrate=bits_per_s, **uart_loopback_kwargs)
|
|
uart.irq(irq, uart.IRQ_BREAK)
|
|
|
|
print("write", bits_per_s)
|
|
for i in range(3):
|
|
uart.write(str(i))
|
|
uart.flush()
|
|
time.sleep_ms(10)
|
|
uart.sendbreak()
|
|
time.sleep_ms(10)
|
|
if "esp32" in sys.platform:
|
|
# On esp32 a read is needed to read in the break byte.
|
|
uart.read()
|
|
print("done")
|