1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- menu "Utest Serial Testcase"
- config UTEST_SERIAL_TC
- bool "Serial testcase"
- default n
- if UTEST_SERIAL_TC
- config RT_SERIAL_TC_DEVICE_NAME
- string "the device name for serial test"
- default "uart2"
- config RT_SERIAL_TC_RXBUF_SIZE
- int "the rx buffer size for serial test"
- default 128
- config RT_SERIAL_TC_TXBUF_SIZE
- int "the tx buffer size for serial test"
- default 128
- config RT_SERIAL_TC_SEND_ITERATIONS
- int "the number of iterations for the test routine."
- default 100
- config UTEST_SERIAL_QEMU_TC
- bool "qemu dedicated tests"
- default n
- config UTEST_SERIAL_POSIX_TC
- bool "Serial posix testcase"
- default n
- select RT_USING_DFS
- select RT_USING_POSIX_FS
- select RT_USING_POSIX_TERMIOS
- if UTEST_SERIAL_POSIX_TC
- config RT_SERIAL_POSIX_TC_DEVICE_NAME
- string "the device name for serial posix test"
- default "dev/uart2"
- config RT_SERIAL_POSIX_TC_SEND_ITERATIONS
- int "the number of iterations for the posix test routine."
- default 100
- endif
- endif
- endmenu
|