* @brief Returns the OUT endpoint list with a "None (Read-only)" entry at index 0. */
| 385 | * @brief Returns the OUT endpoint list with a "None (Read-only)" entry at index 0. |
| 386 | */ |
| 387 | QStringList IO::Drivers::USB::outEndpointList() const |
| 388 | { |
| 389 | QStringList list; |
| 390 | list.append(tr("None (Read-only)")); |
| 391 | list.append(m_outEndpointLabels); |
| 392 | return list; |
| 393 | } |
| 394 | |
| 395 | /** |
| 396 | * @brief Returns the index of the currently selected IN endpoint. |
no test coverage detected