MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / flowControlList

Method flowControlList

app/src/IO/Drivers/UART.cpp:427–434  ·  view source on GitHub ↗

* @brief Returns a list with the available flow control configurations. */

Source from the content-addressed store, hash-verified

425 * @brief Returns a list with the available flow control configurations.
426 */
427QStringList IO::Drivers::UART::flowControlList() const
428{
429 QStringList list;
430 list.append(tr("None"));
431 list.append(tr("RTS/CTS"));
432 list.append(tr("XON/XOFF"));
433 return list;
434}
435
436/**
437 * @brief Returns the active parity setting as a QSerialPort enum.

Callers 2

setFlowControlMethod · 0.80
getConfigurationMethod · 0.80

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected