* @brief Returns a list with the available stop bits configurations. */
| 413 | * @brief Returns a list with the available stop bits configurations. |
| 414 | */ |
| 415 | QStringList IO::Drivers::UART::stopBitsList() const |
| 416 | { |
| 417 | QStringList list; |
| 418 | list.append(QStringLiteral("1")); |
| 419 | list.append(QStringLiteral("1.5")); |
| 420 | list.append(QStringLiteral("2")); |
| 421 | return list; |
| 422 | } |
| 423 | |
| 424 | /** |
| 425 | * @brief Returns a list with the available flow control configurations. |
no test coverage detected