added setUartMode in configuration function

This commit is contained in:
Jakob.Meier 2021-07-11 13:29:05 +02:00
parent 866868b25f
commit 323008c64a
1 changed files with 1 additions and 0 deletions

View File

@ -79,6 +79,7 @@ int UartComIF::configureUartPort(UartCookie* uartCookie) {
setStopBitOptions(&options, uartCookie);
setDatasizeOptions(&options, uartCookie);
setFixedOptions(&options);
setUartMode(&options, *uartCookie);
if(uartCookie->getInputShouldBeFlushed()) {
tcflush(fd, TCIFLUSH);
}