* @brief Sets the stop bits index */
| 1135 | * @brief Sets the stop bits index |
| 1136 | */ |
| 1137 | void IO::Drivers::Modbus::setStopBitsIndex(const quint8 index) |
| 1138 | { |
| 1139 | if (index < 3 && m_stopBitsIndex != index) { |
| 1140 | m_stopBitsIndex = index; |
| 1141 | m_settings.setValue("ModbusDriver/stopBitsIndex", index); |
| 1142 | Q_EMIT stopBitsIndexChanged(); |
| 1143 | } |
| 1144 | } |
| 1145 | |
| 1146 | /** |
| 1147 | * @brief Sets up external connections for timer events and translations |
no outgoing calls
no test coverage detected