QGCSerialPortInfo skips over serial ports which are not the first in any
composite device. However this is how some internal NMEA GPS's present.
So if the description contains 'NMEA', dont skip them.
// Some boards are a composite USB device, with the first port being mavlink and the second something else. We only expose to first mavlink port.
// Some boards are a composite USB device, with the first port being mavlink and the second something else. We only expose to first mavlink port.
qCDebug(QGCSerialPortInfoLog)<<"Skipping secondary port on same device"<<portInfo.portName()<<portInfo.vendorIdentifier()<<portInfo.productIdentifier()<<portInfo.serialNumber();
// However internal NMEA devices can present like this, so dont skip anything with NMEA in description
continue;
if(!portInfo.description().contains("NMEA"))
{
qCDebug(QGCSerialPortInfoLog)<<"Skipping secondary port on same device"<<portInfo.portName()<<portInfo.vendorIdentifier()<<portInfo.productIdentifier()<<portInfo.serialNumber();