diff --git a/src/comm/QGCSerialPortInfo.cc b/src/comm/QGCSerialPortInfo.cc index 133bd672f3735912159282a69fe6a37efe8396d5..9b5ad4e95794b9a48f8d0e00392ba6ca61db5177 100644 --- a/src/comm/QGCSerialPortInfo.cc +++ b/src/comm/QGCSerialPortInfo.cc @@ -81,6 +81,9 @@ QGCSerialPortInfo::BoardType_t QGCSerialPortInfo::boardType(void) const } else if (description().startsWith("PX4 FMU")) { qCDebug(QGCSerialPortInfoLog) << "Found PX4 FMU, assuming V2 (by name matching fallback)"; boardType = BoardTypePX4FMUV2; + } else if (description() == "FT231X USB UART") { + qCDebug(QGCSerialPortInfoLog) << "Found possible Radio (by name matching fallback)"; + boardType = BoardType3drRadio; } }