mirror of
https://github.com/micropython/micropython.git
synced 2025-07-21 21:11:12 +02:00
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>
95 lines
2.3 KiB
Python
95 lines
2.3 KiB
Python
# Test machine.UART.IRQ_RXIDLE firing after a set of characters are received.
|
|
#
|
|
# IMPORTANT: This test requires hardware connections: the UART TX and RX
|
|
# pins must be wired together.
|
|
|
|
try:
|
|
from machine import UART
|
|
|
|
UART.IRQ_RXIDLE
|
|
except (ImportError, AttributeError):
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
import time, sys
|
|
|
|
# Target tuning options.
|
|
tune_wait_initial_rxidle = False
|
|
|
|
# Configure pins based on the target.
|
|
if "alif" in sys.platform:
|
|
uart_id = 1
|
|
tx_pin = None
|
|
rx_pin = None
|
|
elif "esp32" in sys.platform:
|
|
uart_id = 1
|
|
tx_pin = 4
|
|
rx_pin = 5
|
|
elif "mimxrt" in sys.platform:
|
|
uart_id = 1
|
|
tx_pin = None
|
|
elif "pyboard" in sys.platform:
|
|
tune_wait_initial_rxidle = True
|
|
if "STM32WB" in sys.implementation._machine:
|
|
# LPUART(1) is on PA2/PA3
|
|
uart_id = "LP1"
|
|
else:
|
|
# UART(4) is on PA0/PA1
|
|
uart_id = 4
|
|
tx_pin = None
|
|
rx_pin = None
|
|
elif "renesas-ra" in sys.platform:
|
|
uart_id = 9
|
|
tx_pin = None # P602 @ RA6M2
|
|
rx_pin = None # P601 @ RA6M2
|
|
elif "rp2" in sys.platform:
|
|
uart_id = 0
|
|
tx_pin = "GPIO0"
|
|
rx_pin = "GPIO1"
|
|
elif "samd" in sys.platform and "ItsyBitsy M0" in sys.implementation._machine:
|
|
uart_id = 0
|
|
tx_pin = "D1"
|
|
rx_pin = "D0"
|
|
byte_by_byte = True
|
|
elif "samd" in sys.platform and "ItsyBitsy M4" in sys.implementation._machine:
|
|
uart_id = 3
|
|
tx_pin = "D1"
|
|
rx_pin = "D0"
|
|
else:
|
|
print("Please add support for this test on this platform.")
|
|
raise SystemExit
|
|
|
|
|
|
def irq(u):
|
|
print("IRQ_RXIDLE:", bool(u.irq().flags() & u.IRQ_RXIDLE), "data:", u.read())
|
|
|
|
|
|
text = ("12345678", "abcdefgh")
|
|
|
|
# Test that the IRQ is called for each set of byte received.
|
|
for bits_per_s in (2400, 9600, 115200):
|
|
print("========")
|
|
print("bits_per_s:", bits_per_s)
|
|
|
|
if tx_pin is None:
|
|
uart = UART(uart_id, bits_per_s)
|
|
else:
|
|
uart = UART(uart_id, bits_per_s, tx=tx_pin, rx=rx_pin)
|
|
|
|
# Ignore a possible initial RXIDLE condition after creating UART.
|
|
if tune_wait_initial_rxidle:
|
|
uart.irq(lambda _: None, uart.IRQ_RXIDLE)
|
|
time.sleep_ms(10)
|
|
|
|
# Configure desired IRQ.
|
|
uart.irq(irq, uart.IRQ_RXIDLE)
|
|
|
|
for i in range(2):
|
|
# Write data and wait for IRQ.
|
|
print("write")
|
|
uart.write(text[i])
|
|
uart.flush()
|
|
print("ready")
|
|
time.sleep_ms(100)
|
|
print("done")
|