* @brief Returns a list with the available flow control configurations. */
| 425 | * @brief Returns a list with the available flow control configurations. |
| 426 | */ |
| 427 | QStringList 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. |
no test coverage detected