* @brief Returns all available bus type names for the UI combo box. */
| 264 | * @brief Returns all available bus type names for the UI combo box. |
| 265 | */ |
| 266 | QStringList IO::ConnectionManager::availableBuses() const |
| 267 | { |
| 268 | QStringList list; |
| 269 | list.append(tr("UART/COM")); |
| 270 | list.append(tr("Network Socket")); |
| 271 | list.append(tr("Bluetooth LE")); |
| 272 | #ifdef BUILD_COMMERCIAL |
| 273 | list.append(tr("Audio")); |
| 274 | list.append(tr("Modbus")); |
| 275 | list.append(tr("CAN Bus")); |
| 276 | list.append(tr("USB Device")); |
| 277 | list.append(tr("HID Device")); |
| 278 | list.append(tr("Process")); |
| 279 | list.append(tr("MQTT Subscriber")); |
| 280 | #endif |
| 281 | return list; |
| 282 | } |
| 283 | |
| 284 | /** |
| 285 | * @brief Returns the active driver for the given device ID. |
no test coverage detected