serial-usb-for-android: Display all Serial computers

Signed-off-by: Christof Arnosti <charno@charno.ch>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Christof Arnosti 2020-03-05 22:39:11 +01:00 committed by Dirk Hohndel
parent 33643bb0af
commit 6ffb1e3129

View file

@ -180,8 +180,8 @@ void fill_computer_list()
const char *vendor = dc_descriptor_get_vendor(descriptor); const char *vendor = dc_descriptor_get_vendor(descriptor);
const char *product = dc_descriptor_get_product(descriptor); const char *product = dc_descriptor_get_product(descriptor);
#if defined(Q_OS_ANDROID) #if defined(Q_OS_ANDROID)
if ((transports & ~(DC_TRANSPORT_SERIAL | DC_TRANSPORT_USB | DC_TRANSPORT_USBHID)) == 0) if ((transports & ~(DC_TRANSPORT_USB | DC_TRANSPORT_USBHID)) == 0)
// if the only available transports are serial/USB, then check against // if the only available transports are USB, then check against
// the ones that we explicitly support on Android // the ones that we explicitly support on Android
if (!mobileProductList.contains(vendor) || !mobileProductList[vendor].contains(product)) if (!mobileProductList.contains(vendor) || !mobileProductList[vendor].contains(product))
continue; continue;