* @brief Returns true if the device is open and an OUT endpoint is active. */
| 285 | * @brief Returns true if the device is open and an OUT endpoint is active. |
| 286 | */ |
| 287 | bool IO::Drivers::USB::isWritable() const noexcept |
| 288 | { |
| 289 | return m_handle != nullptr && m_activeOutEp != 0; |
| 290 | } |
| 291 | |
| 292 | /** |
| 293 | * @brief Returns true when a device is selected and the connect button should be enabled. |
no outgoing calls
no test coverage detected