* @brief Returns true when a device is selected and the connect button should be enabled. */
| 293 | * @brief Returns true when a device is selected and the connect button should be enabled. |
| 294 | */ |
| 295 | bool IO::Drivers::USB::configurationOk() const noexcept |
| 296 | { |
| 297 | return m_deviceIndex > 0 && (m_deviceIndex - 1) < m_devicePtrs.size(); |
| 298 | } |
| 299 | |
| 300 | /** |
| 301 | * @brief Sends @p data to the device via a synchronous bulk OUT transfer. A mutable copy of |
no test coverage detected