1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/periph/uart_mode
2024-03-26 14:53:35 +01:00
..
main.c tests: move periph_ applications to periphs subdirectory 2023-05-06 15:29:51 +02:00
Makefile tests: move periph_ applications to periphs subdirectory 2023-05-06 15:29:51 +02:00
Makefile.board.dep tests: move periph_ applications to periphs subdirectory 2023-05-06 15:29:51 +02:00
Makefile.ci tests: move periph_ applications to periphs subdirectory 2023-05-06 15:29:51 +02:00
README.md tests: move periph_ applications to periphs subdirectory 2023-05-06 15:29:51 +02:00

Expected result

Use a probe to examine the output from the UART. It tests all permutations of data-bits, parity, and stop-bits. For each mode, the mode configuration will be printed to STDOUT as: For example: 7 data-bits, even parity, and 2 stop-bits would be: 7E2 Only supported mode strings will be printed out. At the end of the test, the default mode will be restored, and a list indicating which modes were supported and unsupported by the device. The scope still needs to be used to validate that the settings were applied properly. If a different BAUD rate than 115200 is desired, compile with: CFLAGS+=-DSTDIO_UART_BAUDRATE=<BAUD>

Background

This test was created because the existing periph_uart test relies on the presence of multiple UARTs, so that one can be used for the shell, and another for testing. This test requires no shell hookup, and automatically runs through the test procedure, relying on a probe to examine the results.