* @brief Returns true when the active connection target(s) are configured. */
| 217 | * @brief Returns true when the active connection target(s) are configured. |
| 218 | */ |
| 219 | bool IO::ConnectionManager::configurationOk() const |
| 220 | { |
| 221 | if (AppState::instance().operationMode() == SerialStudio::ProjectFile) |
| 222 | return projectConfigurationOk(); |
| 223 | |
| 224 | auto* uiDriver = activeUiDriver(); |
| 225 | if (uiDriver) |
| 226 | return uiDriver->configurationOk(); |
| 227 | |
| 228 | return false; |
| 229 | } |
| 230 | |
| 231 | /** |
| 232 | * @brief Returns the currently selected bus type. |
no test coverage detected