* @brief Writes @p data to device 0. */
| 582 | * @brief Writes @p data to device 0. |
| 583 | */ |
| 584 | qint64 IO::ConnectionManager::writeData(const QByteArray& data) |
| 585 | { |
| 586 | Q_ASSERT(!data.isEmpty()); |
| 587 | Q_ASSERT(m_devices.find(0) != m_devices.end()); |
| 588 | |
| 589 | return writeDataToDevice(0, data); |
| 590 | } |
| 591 | |
| 592 | /** |
| 593 | * @brief Writes @p data to the specified @p deviceId. |
no test coverage detected