• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..22-Aug-2025-

boards/22-Aug-2025-

src/22-Aug-2025-

CMakeLists.txt A D22-Aug-2025221 117

Kconfig A D22-Aug-2025555 1613

README.txt A D22-Aug-2025831 1814

prj.conf A D22-Aug-2025259 128

testcase.yaml A D22-Aug-20252.5 KiB8780

README.txt

1The purpose of this test is to validate that uart_poll_out call is resilient to
2being interrupted by another uart API call. That includes uart_poll_out called
3from higher priority context, uart_fifo_fill called from UART interrupt context
4and uart_tx called from higher priority context. Preemptions shall not lead to
5any bytes being dropped.
6
7This test is establishing 3 context from which uart_poll_out is called:
8- main thread
9- higher priority thread
10- k_timer timeout context
11
12From each context stream of data is being sent. Bytes in streams are encoded as
13following: 4 MSB bits contains stream ID, 4 LSB bits are incremented.
14
15Test requires that two pairs of pins are shortened: TX with RX and CTS with RTS.
16UART receives loopback data and validates if for each stream (identified by ID)
17data is consistent.
18